shenyunhang commited on
Commit
20c9387
·
verified ·
1 Parent(s): 48e4053

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +42 -0
README.md ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ ---
4
+
5
+ ---
6
+
7
+ Data source:
8
+ https://huggingface.co/datasets/gpt-omni/VoiceAssistant-400K
9
+
10
+ 1. Question and answer audios are extracted, which results in `940,108` audio files.
11
+ 2. Raw conversations are formed as multi-round chat format in `data.jsonl`, which has in total of `251,223` samples.
12
+ ```
13
+ [
14
+ ...
15
+ {
16
+ "messages": [
17
+ {
18
+ "role": "user",
19
+ "content": "...<|audio|>"
20
+ },
21
+ {
22
+ "role": "assistant",
23
+ "content": "...<|audio|>"
24
+ }
25
+ {
26
+ "role": "user",
27
+ "content": "...<|audio|>"
28
+ },
29
+ {
30
+ "role": "assistant",
31
+ "content": "...<|audio|>"
32
+ },
33
+ ...
34
+ ],
35
+ "audios": ["path/to/first/audio", "path/to/second/audio", "path/to/third/audio", "path/to/forth/audio", ...],
36
+ },
37
+ ...
38
+ ]
39
+ ```
40
+
41
+ ---
42
+