VanessaSchenkel commited on
Commit
1748744
1 Parent(s): 40e382f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +19 -122
README.md CHANGED
@@ -30,127 +30,24 @@ remote_dataset = load_dataset("VanessaSchenkel/translation-en-pt", field="data")
30
  remote_dataset
31
  ```
32
 
 
 
 
 
 
 
 
 
 
33
 
 
 
 
 
34
 
35
- # Dataset Card for translation-en-pt
36
-
37
- ## Table of Contents
38
- - [Table of Contents](#table-of-contents)
39
- - [Dataset Description](#dataset-description)
40
- - [Dataset Summary](#dataset-summary)
41
- - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
42
- - [Languages](#languages)
43
- - [Dataset Structure](#dataset-structure)
44
- - [Data Instances](#data-instances)
45
- - [Data Fields](#data-fields)
46
- - [Data Splits](#data-splits)
47
- - [Dataset Creation](#dataset-creation)
48
- - [Curation Rationale](#curation-rationale)
49
- - [Source Data](#source-data)
50
- - [Annotations](#annotations)
51
- - [Personal and Sensitive Information](#personal-and-sensitive-information)
52
- - [Considerations for Using the Data](#considerations-for-using-the-data)
53
- - [Social Impact of Dataset](#social-impact-of-dataset)
54
- - [Discussion of Biases](#discussion-of-biases)
55
- - [Other Known Limitations](#other-known-limitations)
56
- - [Additional Information](#additional-information)
57
- - [Dataset Curators](#dataset-curators)
58
- - [Licensing Information](#licensing-information)
59
- - [Citation Information](#citation-information)
60
- - [Contributions](#contributions)
61
-
62
- ## Dataset Description
63
-
64
- - **Homepage:**
65
- - **Repository:**
66
- - **Paper:**
67
- - **Leaderboard:**
68
- - **Point of Contact:**
69
-
70
- ### Dataset Summary
71
-
72
- [More Information Needed]
73
-
74
- ### Supported Tasks and Leaderboards
75
-
76
- [More Information Needed]
77
-
78
- ### Languages
79
-
80
- [More Information Needed]
81
-
82
- ## Dataset Structure
83
-
84
- ### Data Instances
85
-
86
- [More Information Needed]
87
-
88
- ### Data Fields
89
-
90
- [More Information Needed]
91
-
92
- ### Data Splits
93
-
94
- [More Information Needed]
95
-
96
- ## Dataset Creation
97
-
98
- ### Curation Rationale
99
-
100
- [More Information Needed]
101
-
102
- ### Source Data
103
-
104
- #### Initial Data Collection and Normalization
105
-
106
- [More Information Needed]
107
-
108
- #### Who are the source language producers?
109
-
110
- [More Information Needed]
111
-
112
- ### Annotations
113
-
114
- #### Annotation process
115
-
116
- [More Information Needed]
117
-
118
- #### Who are the annotators?
119
-
120
- [More Information Needed]
121
-
122
- ### Personal and Sensitive Information
123
-
124
- [More Information Needed]
125
-
126
- ## Considerations for Using the Data
127
-
128
- ### Social Impact of Dataset
129
-
130
- [More Information Needed]
131
-
132
- ### Discussion of Biases
133
-
134
- [More Information Needed]
135
-
136
- ### Other Known Limitations
137
-
138
- [More Information Needed]
139
-
140
- ## Additional Information
141
-
142
- ### Dataset Curators
143
-
144
- [More Information Needed]
145
-
146
- ### Licensing Information
147
-
148
- [More Information Needed]
149
-
150
- ### Citation Information
151
-
152
- [More Information Needed]
153
-
154
- ### Contributions
155
-
156
- Thanks to [@github-username](https://github.com/<github-username>) for adding this dataset.
 
30
  remote_dataset
31
  ```
32
 
33
+ Output:
34
+ ```
35
+ DatasetDict({
36
+ train: Dataset({
37
+ features: ['id', 'translation'],
38
+ num_rows: 260482
39
+ })
40
+ })
41
+ ```
42
 
43
+ Exemple:
44
+ ```
45
+ remote_dataset["train"][5]
46
+ ```
47
 
48
+ Output:
49
+ ```
50
+ {'id': '5',
51
+ 'translation': {'english': 'I have to go to sleep.',
52
+ 'portuguese': 'Tenho de dormir.'}}
53
+ ```