WpythonW commited on
Commit
808f6af
·
verified ·
1 Parent(s): 1351549

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +48 -2
README.md CHANGED
@@ -11,13 +11,59 @@ dataset_info:
11
  dtype: string
12
  splits:
13
  - name: test
14
- num_bytes: 1293604.0
15
  num_examples: 24
16
  download_size: 1293869
17
- dataset_size: 1293604.0
18
  configs:
19
  - config_name: default
20
  data_files:
21
  - split: test
22
  path: data/test-*
 
 
 
 
 
 
 
23
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  dtype: string
12
  splits:
13
  - name: test
14
+ num_bytes: 1293604
15
  num_examples: 24
16
  download_size: 1293869
17
+ dataset_size: 1293604
18
  configs:
19
  - config_name: default
20
  data_files:
21
  - split: test
22
  path: data/test-*
23
+ license: apache-2.0
24
+ task_categories:
25
+ - text-to-speech
26
+ language:
27
+ - en
28
+ size_categories:
29
+ - n<1K
30
  ---
31
+
32
+ # ElevenLabs Multilingual V2 Technical Speech Dataset
33
+
34
+ This dataset contains automatically generated technical phrases in three domains, converted to speech using the ElevenLabs Multilingual V2 model with Adam voice.
35
+
36
+ ## Dataset Description
37
+
38
+ The dataset includes audio samples of technical phrases across three categories:
39
+ - Machine Learning (ML)
40
+ - Science
41
+ - Technology
42
+
43
+ Each entry contains:
44
+ - Audio file in MP3 format (22050Hz)
45
+ - Source text
46
+ - Text length
47
+ - Category label
48
+
49
+ ## Data Generation
50
+
51
+ The phrases were procedurally generated using predefined templates to create coherent technical statements. All audio was synthesized using:
52
+ - Model: ElevenLabs Multilingual V2
53
+ - Voice: Adam
54
+ - Voice Settings:
55
+ - Stability: 0.5
56
+ - Similarity Boost: 0.75
57
+ - Style: 0.0
58
+ - Speaker Boost: Enabled
59
+
60
+ ## Sample Entry
61
+
62
+ ```python
63
+ {
64
+ 'audio': 'path/to/audio.mp3',
65
+ 'text': 'The Distributed computing infrastructure leveraging containerized applications efficiently orchestrates high-throughput transactions...',
66
+ 'length': 195,
67
+ 'category': 'tech_phrase'
68
+ }
69
+ ```