CoolFace
Datasetpublic

VanessaSchenkel/pt-inflections

Dataset Card for Dicionário Português It is a list of 53138 portuguese words with its inflections. How to use it: from datasets import load_dataset remote_dataset = load_dataset("VanessaSchenkel/pt-inflections", field="data") remote_dataset Output: DatasetDict({ train: Dataset({ features: ['word', 'pos', 'forms'], num_rows: 53138 }) }) Exemple: remote_dataset["train"][42] Output: {'word': 'numeral', 'pos': 'noun', 'forms': [{'form': 'numerais'… See the full description on the dataset page: https://huggingface.co/datasets/VanessaSchenkel/pt-inflections.

sourceHugging Faceupdated 4y agoView on Hugging Face
1likes14downloads
Dataset Card

Dataset Card for Dicionário Português

It is a list of 53138 portuguese words with its inflections.

How to use it:

from datasets import load_dataset
remote_dataset = load_dataset("VanessaSchenkel/pt-inflections", field="data")
remote_dataset

Output:

DatasetDict({
    train: Dataset({
        features: ['word', 'pos', 'forms'],
        num_rows: 53138
    })
})

Exemple:

remote_dataset["train"][42]

Output:

{'word': 'numeral',
 'pos': 'noun',
 'forms': [{'form': 'numerais', 'tags': ['plural']}]}