doof-ferb commited on
Commit
3fc99b0
1 Parent(s): e835800

less restrictive license

Browse files
Files changed (1) hide show
  1. README.md +25 -6
README.md CHANGED
@@ -1,9 +1,13 @@
1
  ---
2
- license: cc-by-nc-sa-4.0
3
- task_categories: ["automatic-speech-recognition"]
4
- language: ["vi"]
 
 
 
5
  pretty_name: InfoRe Technology public dataset №1
6
- size_categories: ["10K<n<100K"]
 
7
  dataset_info:
8
  features:
9
  - name: audio
@@ -27,10 +31,25 @@ configs:
27
 
28
  official announcement: https://www.facebook.com/groups/j2team.community/permalink/1010834009248719/
29
 
30
- 25h, 15k samples, InfoRe paid a contractor to read text
31
 
32
  official download: `magnet:?xt=urn:btih:1cbe13fb14a390c852c016a924b4a5e879d85f41&dn=25hours.zip&tr=http%3A%2F%2Foffice.socials.vn%3A8725%2Fannounce`
33
 
34
  mirror: https://files.huylenguyen.com/25hours.zip
35
 
36
- unzip password: `BroughtToYouByInfoRe`
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - automatic-speech-recognition
5
+ - text-to-speech
6
+ language:
7
+ - vi
8
  pretty_name: InfoRe Technology public dataset №1
9
+ size_categories:
10
+ - 10K<n<100K
11
  dataset_info:
12
  features:
13
  - name: audio
 
31
 
32
  official announcement: https://www.facebook.com/groups/j2team.community/permalink/1010834009248719/
33
 
34
+ 25h, 14.9k samples, InfoRe paid a contractor to read text
35
 
36
  official download: `magnet:?xt=urn:btih:1cbe13fb14a390c852c016a924b4a5e879d85f41&dn=25hours.zip&tr=http%3A%2F%2Foffice.socials.vn%3A8725%2Fannounce`
37
 
38
  mirror: https://files.huylenguyen.com/25hours.zip
39
 
40
+ unzip password: `BroughtToYouByInfoRe`
41
+
42
+ pre-process: none
43
+
44
+ need to do: check misspelling
45
+
46
+ usage with HuggingFace:
47
+ ```python
48
+ # pip install -q "datasets[audio]"
49
+ from datasets import load_dataset
50
+ from torch.utils.data import DataLoader
51
+
52
+ dataset = load_dataset("doof-ferb/infore1_25hours", split="train", streaming=True)
53
+ dataset.set_format(type="torch", columns=["audio", "transcription"])
54
+ dataloader = DataLoader(dataset, batch_size=4)
55
+ ```