Beehzod commited on
Commit
2459bdd
1 Parent(s): dba00a4

Create dataset_info.json

Browse files
Files changed (1) hide show
  1. dataset_info.json +38 -0
dataset_info.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "description": "Uzbek Speech-to-Text Dataset for training and evaluation.",
3
+ "homepage": "https://huggingface.co/datasets/Beehzod/data",
4
+ "license": "Specify the license under which the dataset is provided.",
5
+ "features": {
6
+ "audio": {
7
+ "type": "webdataset",
8
+ "files": {
9
+ "other": "tar",
10
+ "train": "tar",
11
+ "validated": "tar",
12
+ "test":"wav"
13
+ }
14
+ },
15
+ "transcription": {
16
+ "type": "table",
17
+ "format": "tsv",
18
+ "columns": ["file_name", "transcription"]
19
+ }
20
+ },
21
+ "splits": {
22
+ "train": {
23
+ "type": "webdataset",
24
+ "files": ["audio/train/*.tar", "transcription/train.tsv"]
25
+ },
26
+ "validation": {
27
+ "type": "webdataset",
28
+ "files": ["audio/validated/*.tar", "transcription/validated.tsv"]
29
+ },
30
+ "other": {
31
+ "type": "webdataset",
32
+ "files": ["audio/other/*.tar", "transcription/other.tsv"]
33
+ },
34
+ "test":{
35
+ "type":"wevdataset",
36
+ "files":["audio/test/*.wav","transcription/test.tsv"]}
37
+ }
38
+ }