CoolFace
Datasetpublic

celiudos/corpus-synthetic-lgpd

Dataset: 105 samples for validation This dataset is a sample of 105 documents from the Carolina Corpus, with data annotated in accordance with the LGPD (Brazilian General Data Protection Law). It is part of an academic study for comparing legal language models. We used to validate the model https://huggingface.co/celiudos/legal-bert-lgpd The data has been modified to preserve privacy while maintaining the structure and content of the documents. The CPF (Brazilian ID Number) had… See the full description on the dataset page: https://huggingface.co/datasets/celiudos/corpus-synthetic-lgpd.

sourceHugging Faceafl-3.0updated 1y agoView on Hugging Face
1likes13downloads
Dataset Card

Dataset: 105 samples for validation

This dataset is a sample of 105 documents from the Carolina Corpus, with data annotated in accordance with the LGPD (Brazilian General Data Protection Law). It is part of an academic study for comparing legal language models. We used to validate the model https://huggingface.co/celiudos/legal-bert-lgpd

The data has been modified to preserve privacy while maintaining the structure and content of the documents. The CPF (Brazilian ID Number) had its check digit altered.

LabelsEn
NOMENAME
DATADATE
ENDERECOADDRESS
CEPZIPCODE
CPFID Number
TELEFONEPHONE
EMAILEMAIL
DINHEIROMONEY

Usage

python
from datasets import load_dataset
ds = load_dataset("celiudos/corpus-synthetic-lgpd")
ds

Output

python
DatasetDict({
    train: Dataset({
        features: ['id', 'arquivo', 'conteudo', 'tokens', 'ner_tags'],
        num_rows: 105
    })
})