Spaces:
Sleeping
Sleeping
:rocket: change logo
Browse files- .gitignore +2 -1
- img/logo.png +0 -0
- {img copy → img}/logo_01.png +0 -0
- train.py +1 -1
.gitignore
CHANGED
@@ -184,4 +184,5 @@ old/
|
|
184 |
# Mac
|
185 |
.DS_Store
|
186 |
.idea
|
187 |
-
wav2vec2_emotion/
|
|
|
|
184 |
# Mac
|
185 |
.DS_Store
|
186 |
.idea
|
187 |
+
wav2vec2_emotion/
|
188 |
+
dataset/
|
img/logo.png
DELETED
Binary file (179 kB)
|
|
{img copy → img}/logo_01.png
RENAMED
File without changes
|
train.py
CHANGED
@@ -10,7 +10,7 @@ from config import DEVICE, NUM_LABELS, BEST_MODEL_NAME
|
|
10 |
import os
|
11 |
|
12 |
# Charger les données et les séparer en train / test
|
13 |
-
data_dir = os.path.abspath(os.path.join(os.path.dirname(__file__), "
|
14 |
ds = load_audio_data(data_dir)
|
15 |
|
16 |
# Prétraitement
|
|
|
10 |
import os
|
11 |
|
12 |
# Charger les données et les séparer en train / test
|
13 |
+
data_dir = os.path.abspath(os.path.join(os.path.dirname(__file__), "dataset"))
|
14 |
ds = load_audio_data(data_dir)
|
15 |
|
16 |
# Prétraitement
|