admin
commited on
Commit
•
8f44364
1
Parent(s):
7c8fceb
upd api
Browse files- .gitignore +1 -0
- README.md +4 -4
.gitignore
CHANGED
@@ -1 +1,2 @@
|
|
1 |
rename.sh
|
|
|
|
1 |
rename.sh
|
2 |
+
test.py
|
README.md
CHANGED
@@ -98,9 +98,9 @@ m_bel, f_bel, m_folk, f_folk
|
|
98 |
| Split(8:1:1) / Subset | default | eval |
|
99 |
| :-------------------: | :-----------------: | :-----------------: |
|
100 |
| train | 159 | 7907 |
|
101 |
-
| validation |
|
102 |
| test | 23 | 991 |
|
103 |
-
| total |
|
104 |
| total duration(s) | `18192.37652721089` | `18192.37652721089` |
|
105 |
|
106 |
## Viewer
|
@@ -111,7 +111,7 @@ m_bel, f_bel, m_folk, f_folk
|
|
111 |
```python
|
112 |
from datasets import load_dataset
|
113 |
|
114 |
-
|
115 |
for item in ds["train"]:
|
116 |
print(item)
|
117 |
|
@@ -126,7 +126,7 @@ for item in ds["test"]:
|
|
126 |
```python
|
127 |
from datasets import load_dataset
|
128 |
|
129 |
-
|
130 |
for item in ds["train"]:
|
131 |
print(item)
|
132 |
|
|
|
98 |
| Split(8:1:1) / Subset | default | eval |
|
99 |
| :-------------------: | :-----------------: | :-----------------: |
|
100 |
| train | 159 | 7907 |
|
101 |
+
| validation | 21 | 988 |
|
102 |
| test | 23 | 991 |
|
103 |
+
| total | 203 | 9886 |
|
104 |
| total duration(s) | `18192.37652721089` | `18192.37652721089` |
|
105 |
|
106 |
## Viewer
|
|
|
111 |
```python
|
112 |
from datasets import load_dataset
|
113 |
|
114 |
+
ds = load_dataset("ccmusic-database/bel_canto", name="default")
|
115 |
for item in ds["train"]:
|
116 |
print(item)
|
117 |
|
|
|
126 |
```python
|
127 |
from datasets import load_dataset
|
128 |
|
129 |
+
ds = load_dataset("ccmusic-database/bel_canto", name="eval")
|
130 |
for item in ds["train"]:
|
131 |
print(item)
|
132 |
|