alayaran commited on
Commit
baa46ce
1 Parent(s): d19003d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +41 -0
README.md CHANGED
@@ -1,3 +1,44 @@
1
  ---
2
  license: mit
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
+ language:
4
+ - brx
5
+ - en
6
+ task_categories:
7
+ - translation
8
+ pretty_name: bodo_english_parallel_dataset
9
+ size_categories:
10
+ - 10K<n<100K
11
  ---
12
+
13
+ # Uses
14
+
15
+ ```
16
+ from datasets import load_dataset
17
+ dataset = load_dataset('alayaran/bodo_english_parallel')
18
+
19
+ # Dayaset information
20
+ dataset
21
+
22
+ `DatasetDict({
23
+ train: Dataset({
24
+ features: ['id', 'translation'],
25
+ num_rows: 149018
26
+ })
27
+ })`
28
+
29
+ # example
30
+ # Lets check the last 3 entries of the dataset
31
+ dataset['train'][-3:]
32
+
33
+ {'id': ['149015', '149016', '149017'],
34
+ 'translation': [{'brx': '"गोबां बिबां आरो गोजौ-थ्रूपुट थाखो फारि खालामग्रा आरोंदायारि गोनोखो फैनायनि उनाव, जों दा गोबां गोजौ-रोजाथि जिनम थाखो फारियारि खारि आरो मोनसे जिबख्रियारि थाखोखौ लाफाना फांसे बिफांनि गुबुन-गुबुन बाहागोनिफ्राय ट्रांसक्रिप्टोम खारिबो दिहुन्नो हाबाय, "वार्ष्णेयया बुङो।',
35
+ 'eng': '"With the advent of large-scale and high-throughput sequencing technologies, we are now able to generate large high-density genome sequencing data and also transcriptome data from various parts of a plant including at single cell level," says Varshney.'},
36
+ {'brx': "इयुन्नि जौगानायनि राहाया गोथौ बिजिरसंफोराव थायो, गाहाय महरै बेटारी आरोंदायारि गोनोखोआव आरो ई.वी. चार्ज खालामग्रा पइन्ट आरो बेटारिफोरखौ बाहायफिन्नायखौ लाफानानै ई.वी. लुनायनि सानज'थाय गुवारै गोसार होनायाव थायो।",
37
+ 'eng': 'The key to future growth lies in deep research, specifically in battery technology and in wider deployment of E.V. infrastructure, including charging points and recycling of batteries.'},
38
+ {'brx': "बै सांग्रांथि होसेयावबो, बिथाङा बे नंगुबै तथ्य'याव फैनौ जुजिदोंमोन दि बिथाङा जाय थांखिगोनां बिजिरसं मावथांखिखौ जागायदोंमोन,बियो इं 2003 माइथायनि सोमखोर जांख्रिथायनि बिफा नरमेन बरल'गनि मोनसे बिबुंथिनिफ्राय थुलुंगा जादोंमोन, जाय रोदा सुनो फेलें जादोंमोन।",
39
+ 'eng': 'Despite that awareness, he struggled to come to terms with the fact that the ambitious research project he had embarked upon, inspired by a speech in 2003 by Norman Borlaug, the Father of Green Revolution, had failed to take root.'}]}
40
+
41
+
42
+
43
+
44
+ ```