VanessaSchenkel commited on
Commit
8068419
1 Parent(s): 0d08b99

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -22
README.md CHANGED
@@ -25,31 +25,10 @@ task_ids:
25
  ---
26
 
27
  # Dataset Card for Dicionário Português
28
- It is a list of 310873 portuguese words with its informations
29
  How to use it:
30
  ```
31
  from datasets import load_dataset
32
  remote_dataset = load_dataset("VanessaSchenkel/pt-all-words")
33
  remote_dataset
34
  ```
35
- Output:
36
- ```
37
- DatasetDict({
38
- train: Dataset({
39
- features: ['word', 'pos', 'forms', 'expansion', 'raw_glosses'],
40
- num_rows: 310873
41
- })
42
- })
43
- ```
44
- Exemple:
45
- ```
46
- remote_dataset["train"][5542]
47
- ```
48
- Output:
49
- ```
50
- {'word': 'cambio',
51
- 'pos': 'noun',
52
- 'forms': [{'form': 'cambios', 'tags': ['plural']}],
53
- 'expansion': 'cambio m (plural cambios)',
54
- 'raw_glosses': ''}
55
- ```
25
  ---
26
 
27
  # Dataset Card for Dicionário Português
28
+ It is a list of portuguese words with its inflections
29
  How to use it:
30
  ```
31
  from datasets import load_dataset
32
  remote_dataset = load_dataset("VanessaSchenkel/pt-all-words")
33
  remote_dataset
34
  ```