Mikhail Tsimashkou
commited on
Commit
·
2346153
1
Parent(s):
3ddd9e6
Added dataset info
Browse files- README.md +46 -0
- data/aru/files.jsonl +2 -2
- data/cmu-arctic/files.jsonl +2 -2
README.md
CHANGED
@@ -20,6 +20,52 @@ configs:
|
|
20 |
path: data/aru/embeddings*.jsonl
|
21 |
- split: cmu-arctic
|
22 |
path: data/cmu-arctic/embeddings*.jsonl
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
|
24 |
pretty_name: Speaker Embeddings
|
25 |
---
|
|
|
20 |
path: data/aru/embeddings*.jsonl
|
21 |
- split: cmu-arctic
|
22 |
path: data/cmu-arctic/embeddings*.jsonl
|
23 |
+
dataset_info:
|
24 |
+
- config_name: speakers
|
25 |
+
features:
|
26 |
+
- name: id
|
27 |
+
dtype: string
|
28 |
+
- name: name
|
29 |
+
dtype: string
|
30 |
+
- name: lang
|
31 |
+
dtype: string
|
32 |
+
- name: sex
|
33 |
+
dtype: string
|
34 |
+
- name: age
|
35 |
+
dtype: int32
|
36 |
+
- config_name: models
|
37 |
+
features:
|
38 |
+
- name: id
|
39 |
+
dtype: string
|
40 |
+
- name: name
|
41 |
+
dtype: string
|
42 |
+
- name: size
|
43 |
+
dtype: int32
|
44 |
+
- name: sample_rate
|
45 |
+
dtype: int32
|
46 |
+
- config_name: files
|
47 |
+
features:
|
48 |
+
- name: id
|
49 |
+
dtype: string
|
50 |
+
- name: name
|
51 |
+
dtype: string
|
52 |
+
- name: speaker
|
53 |
+
dtype: string
|
54 |
+
- name: dataset
|
55 |
+
dtype: string
|
56 |
+
- config_name: embeddings
|
57 |
+
features:
|
58 |
+
- name: speaker
|
59 |
+
dtype: string
|
60 |
+
- name: file
|
61 |
+
dtype: string
|
62 |
+
- name: model
|
63 |
+
dtype: string
|
64 |
+
- name: embedding
|
65 |
+
dtype:
|
66 |
+
Array2D:
|
67 |
+
shape: (1, 3)
|
68 |
+
dtype: float32
|
69 |
|
70 |
pretty_name: Speaker Embeddings
|
71 |
---
|
data/aru/files.jsonl
CHANGED
@@ -1,2 +1,2 @@
|
|
1 |
-
{ "id": "001", "
|
2 |
-
{ "id": "002", "
|
|
|
1 |
+
{ "id": "001", "name": "aru-file1.wav", "speaker": "001", "dataset": "aru" }
|
2 |
+
{ "id": "002", "name": "aru-file2.wav", "speaker": "001", "dataset": "aru" }
|
data/cmu-arctic/files.jsonl
CHANGED
@@ -1,2 +1,2 @@
|
|
1 |
-
{ "id": "001", "
|
2 |
-
{ "id": "002", "
|
|
|
1 |
+
{ "id": "001", "name": "cmu-arctic-file1.wav", "speaker": "002", "dataset": "cmu-arctic" }
|
2 |
+
{ "id": "002", "name": "cmu-arctic-file2.wav", "speaker": "002", "dataset": "cmu-arctic" }
|