File size: 1,372 Bytes
fcfa80b
3fc99b0
 
 
 
 
 
e835800
3fc99b0
 
fcfa80b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e835800
 
 
 
 
3fc99b0
e835800
 
 
 
 
3fc99b0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
---
license: cc-by-4.0
task_categories:
- automatic-speech-recognition
- text-to-speech
language:
- vi
pretty_name: InfoRe Technology public dataset №1
size_categories:
- 10K<n<100K
dataset_info:
  features:
  - name: audio
    dtype: audio
  - name: transcription
    dtype: string
  splits:
  - name: train
    num_bytes: 7370428827.92
    num_examples: 14935
  download_size: 7832947140
  dataset_size: 7370428827.92
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
---

# unofficial mirror of InfoRe Technology public dataset №1

official announcement: https://www.facebook.com/groups/j2team.community/permalink/1010834009248719/

25h, 14.9k samples, InfoRe paid a contractor to read text

official download: `magnet:?xt=urn:btih:1cbe13fb14a390c852c016a924b4a5e879d85f41&dn=25hours.zip&tr=http%3A%2F%2Foffice.socials.vn%3A8725%2Fannounce`

mirror: https://files.huylenguyen.com/25hours.zip

unzip password: `BroughtToYouByInfoRe`

pre-process: none

need to do: check misspelling

usage with HuggingFace:
```python
# pip install -q "datasets[audio]"
from datasets import load_dataset
from torch.utils.data import DataLoader

dataset = load_dataset("doof-ferb/infore1_25hours", split="train", streaming=True)
dataset.set_format(type="torch", columns=["audio", "transcription"])
dataloader = DataLoader(dataset, batch_size=4)
```