ronunes/LegiSubject-Br-Summaries
π§π· Brazilian Legislative Bills β Summary Dataset This dataset contains summaries (ementas) of legislative bills proposed in the Brazilian Chamber of Deputies (BCoD) from 1991 to 2022.It is intended for multi-label classification, where each bill may be associated with one or more subject categories (temas). π This is the summary version of the dataset.If you are looking for the keywords version, see:π ronunes/LegiSubject-Br-Keywords π Dataset Structure Theβ¦ See the full description on the dataset page: https://huggingface.co/datasets/ronunes/LegiSubject-Br-Summaries.
π§π· Brazilian Legislative Bills β Summary Dataset
This dataset contains summaries (ementas) of legislative bills proposed in the Brazilian Chamber of Deputies (BCoD) from 1991 to 2022. It is intended for multi-label classification, where each bill may be associated with one or more subject categories (temas).
π This is the summary version of the dataset. If you are looking for the keywords version, see: π `ronunes/LegiSubject-Br-Keywords`
π Dataset Structure
The dataset is organized into 10 stratified cross-validation folds (fold0 to fold9). Each fold contains 3 standard splits:
trainvalidationtest
Each split contains the following fields:
The task is to predict the subject(s) of a bill given its summary.
Usage
You can load each fold easily with the Hugging Face datasets library:
from datasets import load_dataset
ds = load_dataset("ronunes/LegiSubject-Br-Summaries", name="fold0", split="train")
