Yehor commited on
Commit
95bab01
1 Parent(s): d68bf51

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +15 -0
README.md CHANGED
@@ -1,3 +1,18 @@
1
  ---
 
 
2
  license: cc-by-4.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - uk
4
  license: cc-by-4.0
5
  ---
6
+
7
+ This repository contains transcriptions with other metadata for the VOA Ukrainian dataset.
8
+
9
+ Usage:
10
+
11
+ ```python
12
+ from datasets import load_dataset
13
+
14
+ ds = load_dataset('Yehor/voa-uk-transcriptions', split='train')
15
+
16
+ for row in ds:
17
+ print(row['text'])
18
+ ```