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.
114
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_datasetOutput:
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']}]}