Datasets:
add dataset structure
Browse files
README.md
CHANGED
@@ -37,13 +37,20 @@ There are several preprocessing processes done with this dataset.
|
|
37 |
3. Keep the data that has score above 0,7.
|
38 |
4. Add `<bt>` tag in front of the Bemba sentences to indicate that the data is generated by back-translating method.
|
39 |
|
40 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
```
|
42 |
-
|
43 |
-
``` -->
|
44 |
|
45 |
# Reference
|
46 |
|
47 |
```
|
|
|
48 |
1. https://tatoeba.org/
|
|
|
49 |
```
|
|
|
37 |
3. Keep the data that has score above 0,7.
|
38 |
4. Add `<bt>` tag in front of the Bemba sentences to indicate that the data is generated by back-translating method.
|
39 |
|
40 |
+
# Dataset Structure
|
41 |
+
```
|
42 |
+
DatasetDict({
|
43 |
+
train: Dataset({
|
44 |
+
features: ['text_bem', 'text_en'],
|
45 |
+
num_rows: 20121
|
46 |
+
})
|
47 |
+
})
|
48 |
```
|
|
|
|
|
49 |
|
50 |
# Reference
|
51 |
|
52 |
```
|
53 |
+
|
54 |
1. https://tatoeba.org/
|
55 |
+
|
56 |
```
|