manan-u commited on
Commit
39f6925
·
verified ·
1 Parent(s): 3026615

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +22 -128
README.md CHANGED
@@ -1,128 +1,22 @@
1
- ---
2
- dataset_info:
3
- features:
4
- - name: source
5
- dtype: string
6
- - name: target
7
- dtype: string
8
- - name: translation_direction
9
- dtype: string
10
- - name: translation_direction_verbalized
11
- dtype: string
12
- splits:
13
- - name: as
14
- num_bytes: 354403
15
- num_examples: 1503
16
- - name: bn
17
- num_bytes: 337642
18
- num_examples: 1503
19
- - name: brx
20
- num_bytes: 351745
21
- num_examples: 1503
22
- - name: doi
23
- num_bytes: 357514
24
- num_examples: 1503
25
- - name: gom
26
- num_bytes: 337364
27
- num_examples: 1503
28
- - name: gu
29
- num_bytes: 340204
30
- num_examples: 1503
31
- - name: hi
32
- num_bytes: 338664
33
- num_examples: 1503
34
- - name: kn
35
- num_bytes: 366875
36
- num_examples: 1503
37
- - name: ks
38
- num_bytes: 292049
39
- num_examples: 1503
40
- - name: mai
41
- num_bytes: 353021
42
- num_examples: 1503
43
- - name: ml
44
- num_bytes: 395670
45
- num_examples: 1503
46
- - name: mr
47
- num_bytes: 354673
48
- num_examples: 1503
49
- - name: mni
50
- num_bytes: 343395
51
- num_examples: 1503
52
- - name: ne
53
- num_bytes: 350829
54
- num_examples: 1503
55
- - name: or
56
- num_bytes: 354606
57
- num_examples: 1503
58
- - name: pa
59
- num_bytes: 339923
60
- num_examples: 1503
61
- - name: sa
62
- num_bytes: 349896
63
- num_examples: 1503
64
- - name: sat
65
- num_bytes: 371607
66
- num_examples: 1503
67
- - name: sd
68
- num_bytes: 348716
69
- num_examples: 1503
70
- - name: ta
71
- num_bytes: 392920
72
- num_examples: 1503
73
- - name: te
74
- num_bytes: 343199
75
- num_examples: 1503
76
- - name: ur
77
- num_bytes: 276588
78
- num_examples: 1503
79
- download_size: 3215713
80
- dataset_size: 7651503
81
- configs:
82
- - config_name: default
83
- data_files:
84
- - split: as
85
- path: data/as-*
86
- - split: bn
87
- path: data/bn-*
88
- - split: brx
89
- path: data/brx-*
90
- - split: doi
91
- path: data/doi-*
92
- - split: gom
93
- path: data/gom-*
94
- - split: gu
95
- path: data/gu-*
96
- - split: hi
97
- path: data/hi-*
98
- - split: kn
99
- path: data/kn-*
100
- - split: ks
101
- path: data/ks-*
102
- - split: mai
103
- path: data/mai-*
104
- - split: ml
105
- path: data/ml-*
106
- - split: mr
107
- path: data/mr-*
108
- - split: mni
109
- path: data/mni-*
110
- - split: ne
111
- path: data/ne-*
112
- - split: or
113
- path: data/or-*
114
- - split: pa
115
- path: data/pa-*
116
- - split: sa
117
- path: data/sa-*
118
- - split: sat
119
- path: data/sat-*
120
- - split: sd
121
- path: data/sd-*
122
- - split: ta
123
- path: data/ta-*
124
- - split: te
125
- path: data/te-*
126
- - split: ur
127
- path: data/ur-*
128
- ---
 
1
+ # IN22-Conv-enxx
2
+
3
+ This dataset is a reformatted version of [ai4bharat/IN22-Conv](https://huggingface.co/datasets/ai4bharat/IN22-Conv)
4
+ to match the structure of [VarunGumma/IGB_Flores_xxen](https://huggingface.co/datasets/VarunGumma/IGB_Flores_xxen).
5
+
6
+ ## Translation Direction
7
+ - **Direction**: English to Indic languages (enxx)
8
+ - **Source**: English (`eng_Latn`)
9
+ - **Targets**: 22 Indic languages
10
+
11
+ ## Dataset Structure
12
+ - Each language subset contains translations from English to that specific Indic language
13
+ - Fields: `source`, `target`, `translation_direction`, `translation_direction_verbalized`
14
+
15
+ ## Available Languages
16
+ Assamese, Bengali, Bodo, Dogri, Konkani, Gujarati, Hindi, Kannada, Kashmiri, Maithili, Malayalam, Marathi, Manipuri, Nepali, Odia, Punjabi, Sanskrit, Santali, Sindhi, Tamil, Telugu, Urdu
17
+
18
+ ## Usage
19
+ ```python
20
+ from datasets import load_dataset
21
+ dataset = load_dataset("manan-u/in22_conv_enxx", "hi") # Load Hindi subset
22
+ ```