Datasets:

Multilinguality:
translation
Size Categories:
n<1K
Language Creators:
found
Annotations Creators:
found
Source Datasets:
original
Tags:
License:
VanessaSchenkel commited on
Commit
b839c6a
1 Parent(s): 8f1a9e2

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +49 -0
README.md ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - found
4
+ language:
5
+ - en
6
+ - pt
7
+ language_creators:
8
+ - found
9
+ license:
10
+ - afl-3.0
11
+ multilinguality:
12
+ - translation
13
+ pretty_name: VanessaSchenkel/handmade-dataset
14
+ size_categories:
15
+ - n<1K
16
+ source_datasets:
17
+ - original
18
+ tags: []
19
+ task_categories:
20
+ - translation
21
+ task_ids: []
22
+ ---
23
+ Dataset with sentences regarding professions, half of the translations are to feminine and half for masculine sentences.
24
+
25
+ How to use it:
26
+ ```
27
+ from datasets import load_dataset
28
+ remote_dataset = load_dataset("VanessaSchenkel/handmade-dataset", field="data")
29
+ remote_dataset
30
+ ```
31
+ Output:
32
+ ```
33
+ DatasetDict({
34
+ train: Dataset({
35
+ features: ['id', 'translation'],
36
+ num_rows: 388
37
+ })
38
+ })
39
+ ```
40
+ Exemple:
41
+ ```
42
+ remote_dataset["train"][5]
43
+ ```
44
+ Output:
45
+ ```
46
+ {'id': '5',
47
+ 'translation': {'english': 'the postman finished her work .',
48
+ 'portuguese': 'A carteira terminou seu trabalho .'}}
49
+ ```