Spaces:
Running
Running
Feat: Restrict participant ids
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- app.py +48 -34
- files_to_annotate_padded_smaller_emotion_set/002/002-0035.wav +0 -3
- files_to_annotate_padded_smaller_emotion_set/002/002-0057.wav +0 -0
- files_to_annotate_padded_smaller_emotion_set/002/002-0061.wav +0 -3
- files_to_annotate_padded_smaller_emotion_set/002/002-0070.wav +0 -3
- files_to_annotate_padded_smaller_emotion_set/002/002-0076.wav +0 -3
- files_to_annotate_padded_smaller_emotion_set/002/002-0080.wav +0 -3
- files_to_annotate_padded_smaller_emotion_set/002/002-0081.wav +0 -3
- files_to_annotate_padded_smaller_emotion_set/002/002-0107.wav +0 -3
- files_to_annotate_padded_smaller_emotion_set/002/002-0152.wav +0 -3
- files_to_annotate_padded_smaller_emotion_set/002/002-0155.wav +0 -3
- files_to_annotate_padded_smaller_emotion_set/002/002-0165.wav +0 -3
- files_to_annotate_padded_smaller_emotion_set/002/002-0196.wav +0 -3
- files_to_annotate_padded_smaller_emotion_set/002/002-0197.wav +0 -3
- files_to_annotate_padded_smaller_emotion_set/002/002-0210.wav +0 -3
- files_to_annotate_padded_smaller_emotion_set/002/002-0227.wav +0 -3
- files_to_annotate_padded_smaller_emotion_set/002/002-0237.wav +0 -3
- files_to_annotate_padded_smaller_emotion_set/002/002-0256.wav +0 -3
- files_to_annotate_padded_smaller_emotion_set/002/002-0257.wav +0 -3
- files_to_annotate_padded_smaller_emotion_set/002/002-0261.wav +0 -3
- files_to_annotate_padded_smaller_emotion_set/002/002-0320.wav +0 -3
- files_to_annotate_padded_smaller_emotion_set/002/002-0346.wav +0 -3
- files_to_annotate_padded_smaller_emotion_set/002/002-0378.wav +0 -0
- files_to_annotate_padded_smaller_emotion_set/002/002-0417.wav +0 -3
- files_to_annotate_padded_smaller_emotion_set/002/002-0418.wav +0 -3
- files_to_annotate_padded_smaller_emotion_set/002/002-0419.wav +0 -3
- files_to_annotate_padded_smaller_emotion_set/002/002-0424.wav +0 -3
- files_to_annotate_padded_smaller_emotion_set/002/002-0431.wav +0 -3
- files_to_annotate_padded_smaller_emotion_set/002/002-0448.wav +0 -3
- files_to_annotate_padded_smaller_emotion_set/002/002-0464.wav +0 -3
- files_to_annotate_padded_smaller_emotion_set/002/002-0468.wav +0 -0
- files_to_annotate_padded_smaller_emotion_set/002/002-0485.wav +0 -0
- files_to_annotate_padded_smaller_emotion_set/002/002-0503.wav +0 -0
- files_to_annotate_padded_smaller_emotion_set/002/002-0504.wav +0 -3
- files_to_annotate_padded_smaller_emotion_set/002/002-0513.wav +0 -3
- files_to_annotate_padded_smaller_emotion_set/002/002-0522.wav +0 -3
- files_to_annotate_padded_smaller_emotion_set/002/002-0526.wav +0 -3
- files_to_annotate_padded_smaller_emotion_set/002/002-0530.wav +0 -3
- files_to_annotate_padded_smaller_emotion_set/002/002-0562.wav +0 -3
- files_to_annotate_padded_smaller_emotion_set/002/002-0573.wav +0 -3
- files_to_annotate_padded_smaller_emotion_set/002/002-0581.wav +0 -3
- files_to_annotate_padded_smaller_emotion_set/002/002-0589.wav +0 -3
- files_to_annotate_padded_smaller_emotion_set/002/002-0598.wav +0 -3
- files_to_annotate_padded_smaller_emotion_set/002/002-0603.wav +0 -3
- files_to_annotate_padded_smaller_emotion_set/002/002-0610.wav +0 -3
- files_to_annotate_padded_smaller_emotion_set/002/002-0611.wav +0 -3
- files_to_annotate_padded_smaller_emotion_set/002/002-0615.wav +0 -3
- files_to_annotate_padded_smaller_emotion_set/002/002-0624.wav +0 -3
- files_to_annotate_padded_smaller_emotion_set/002/002-0645.wav +0 -3
- files_to_annotate_padded_smaller_emotion_set/002/002-0646.wav +0 -3
app.py
CHANGED
@@ -210,13 +210,19 @@ side_bar_html = """
|
|
210 |
|
211 |
persistent_storage = Path('/data')
|
212 |
# List of all audio files to annotate
|
213 |
-
file_list
|
214 |
-
total_annotations
|
215 |
# Initialize an empty DataFrame to store annotations
|
216 |
annotations = pd.DataFrame(columns=['sample_id', 'sentence', 'emotion', 'confidence', 'comments'])
|
217 |
current_index = {"index": 0} # Dictionary to allow modifying inside functions
|
218 |
password_files = os.getenv("password_files")
|
219 |
|
|
|
|
|
|
|
|
|
|
|
|
|
220 |
|
221 |
def get_storage(password):
|
222 |
#source: https://discuss.huggingface.co/t/accessing-data-folder-of-persistent-storage/46681/2
|
@@ -238,11 +244,10 @@ def get_storage(password):
|
|
238 |
return files, f"{usage/(1024.0 ** 3):.3f}GB"
|
239 |
|
240 |
|
241 |
-
def load_first_example(
|
242 |
""" Loads and first example and updates index"""
|
243 |
global annotations
|
244 |
global current_index
|
245 |
-
|
246 |
path_ann = f'{persistent_storage}/{participant_id}_annotations.csv'
|
247 |
print(path_ann)
|
248 |
if os.path.exists(path_ann):
|
@@ -255,18 +260,18 @@ def load_first_example(index, participant_id, ann_completed):
|
|
255 |
ann_completed = gr.Number(len(annotations) - 1, visible=False)
|
256 |
print(len(annotations))
|
257 |
return ann_completed, *load_example(current_index["index"])
|
258 |
-
|
259 |
def load_example(index):
|
260 |
"""Loads the example in row #index from dataframe file_list.
|
261 |
If there are any annotations it will give those values to the annotation dataframe"""
|
262 |
|
263 |
row = file_list.iloc[index]
|
264 |
-
audio_path = os.path.join('
|
265 |
-
sentence = row["
|
266 |
|
267 |
# If the user already made an annotation for this example, gradio will return said annotation
|
268 |
previous_annotation = (
|
269 |
-
annotations.iloc[index].to_dict() if index < len(annotations) else {"sample_id": row["
|
270 |
"comments": ''}
|
271 |
)
|
272 |
print(previous_annotation)
|
@@ -278,8 +283,8 @@ def save_annotation(emotions, confidence, comments, participant_id, ann_complete
|
|
278 |
|
279 |
idx = current_index["index"]
|
280 |
row = file_list.iloc[idx]
|
281 |
-
sample_id = row["
|
282 |
-
sentence = row["
|
283 |
|
284 |
# Update or append annotation
|
285 |
if sample_id in annotations["sample_id"].values:
|
@@ -307,27 +312,38 @@ def next_example(emotions, confidence, comments, participant_id, ann_completed):
|
|
307 |
def previous_example(emotion, confidence, comments, participant_id, ann_completed):
|
308 |
"""Move to the previous example."""
|
309 |
global current_index
|
310 |
-
if emotion
|
311 |
ann_completed = save_annotation(emotion, confidence, comments, participant_id, ann_completed)
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
|
317 |
-
def deactivate_participant_id(participant_id, lets_go):
|
318 |
-
|
319 |
-
|
320 |
-
|
|
|
321 |
|
322 |
-
|
|
|
|
|
|
|
|
|
323 |
|
324 |
-
emotions = gr.Radio(["Blank", "Joy", "Sad", "Angry", "Neutral"], label="Predominant Emotion", value = "Blank", visible = True)
|
325 |
-
confidence = gr.Slider(label="How confident are you that the annotated emotion is present in the recording? (%)", minimum=0, maximum=100, step=10, visible = True)
|
326 |
-
comments = gr.Textbox(label="Comments", visible =True)
|
327 |
-
previous_button = gr.Button("Previous Example", visible = True)
|
328 |
-
next_button = gr.Button("Next Example",visible = True)
|
329 |
|
330 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
331 |
# ===================
|
332 |
# Gradio Interface
|
333 |
# ===================
|
@@ -367,7 +383,7 @@ with (gr.Blocks(theme=gr.themes.Soft(), css = css) as demo):
|
|
367 |
|
368 |
with gr.Tab("Annotation Interface"):
|
369 |
ann_completed = gr.Number(0, visible=False)
|
370 |
-
total = gr.Number(
|
371 |
# Row with progress bar
|
372 |
|
373 |
gr.HTML("""
|
@@ -416,13 +432,11 @@ with (gr.Blocks(theme=gr.themes.Soft(), css = css) as demo):
|
|
416 |
inputs=[emotions, confidence, comments, participant_id, ann_completed],
|
417 |
outputs=[sentence_text, audio_player, emotions, confidence, ann_completed, comments],
|
418 |
).then(None, [], [ann_completed, total], js = js_progress_bar)
|
419 |
-
|
420 |
-
|
421 |
|
422 |
-
|
423 |
-
|
424 |
-
lets_go.click(
|
425 |
-
|
426 |
|
427 |
with gr.Tab("Access Files"):
|
428 |
with gr.Row():
|
@@ -436,5 +450,5 @@ with (gr.Blocks(theme=gr.themes.Soft(), css = css) as demo):
|
|
436 |
get_files_button.click(get_storage, inputs= [password], outputs=[files, storage], postprocess=False)
|
437 |
|
438 |
|
439 |
-
demo.launch()
|
440 |
|
|
|
210 |
|
211 |
persistent_storage = Path('/data')
|
212 |
# List of all audio files to annotate
|
213 |
+
global file_list
|
214 |
+
global total_annotations
|
215 |
# Initialize an empty DataFrame to store annotations
|
216 |
annotations = pd.DataFrame(columns=['sample_id', 'sentence', 'emotion', 'confidence', 'comments'])
|
217 |
current_index = {"index": 0} # Dictionary to allow modifying inside functions
|
218 |
password_files = os.getenv("password_files")
|
219 |
|
220 |
+
possible_ids = {'Tiger-001': 0, 'Panda-002': 0,
|
221 |
+
'Falcon-003': 1, 'Wolf-004': 1,
|
222 |
+
'Dolphin-005': 2, 'Eagle-006': 2,
|
223 |
+
'Jaguar-007': 3, 'Rhino-008': 3,
|
224 |
+
'Zebra-009': 4, 'Lion-010': 4,
|
225 |
+
'Cheetah-011': 5, 'Bear-012': 5}
|
226 |
|
227 |
def get_storage(password):
|
228 |
#source: https://discuss.huggingface.co/t/accessing-data-folder-of-persistent-storage/46681/2
|
|
|
244 |
return files, f"{usage/(1024.0 ** 3):.3f}GB"
|
245 |
|
246 |
|
247 |
+
def load_first_example(participant_id, ann_completed):
|
248 |
""" Loads and first example and updates index"""
|
249 |
global annotations
|
250 |
global current_index
|
|
|
251 |
path_ann = f'{persistent_storage}/{participant_id}_annotations.csv'
|
252 |
print(path_ann)
|
253 |
if os.path.exists(path_ann):
|
|
|
260 |
ann_completed = gr.Number(len(annotations) - 1, visible=False)
|
261 |
print(len(annotations))
|
262 |
return ann_completed, *load_example(current_index["index"])
|
263 |
+
|
264 |
def load_example(index):
|
265 |
"""Loads the example in row #index from dataframe file_list.
|
266 |
If there are any annotations it will give those values to the annotation dataframe"""
|
267 |
|
268 |
row = file_list.iloc[index]
|
269 |
+
audio_path = os.path.join(persistent_storage, 'files_to_annotate_2round', row["sample_id"].split('-')[0], row["sample_id"] + '.wav')
|
270 |
+
sentence = row["sentence"]
|
271 |
|
272 |
# If the user already made an annotation for this example, gradio will return said annotation
|
273 |
previous_annotation = (
|
274 |
+
annotations.iloc[index].to_dict() if index < len(annotations) else {"sample_id": row["sample_id"], "emotion": 'Blank', "confidence": 0,
|
275 |
"comments": ''}
|
276 |
)
|
277 |
print(previous_annotation)
|
|
|
283 |
|
284 |
idx = current_index["index"]
|
285 |
row = file_list.iloc[idx]
|
286 |
+
sample_id = row["sample_id"]
|
287 |
+
sentence = row["sentence"]
|
288 |
|
289 |
# Update or append annotation
|
290 |
if sample_id in annotations["sample_id"].values:
|
|
|
312 |
def previous_example(emotion, confidence, comments, participant_id, ann_completed):
|
313 |
"""Move to the previous example."""
|
314 |
global current_index
|
315 |
+
if emotion != "Blank":
|
316 |
ann_completed = save_annotation(emotion, confidence, comments, participant_id, ann_completed)
|
317 |
+
if current_index["index"] > 0:
|
318 |
+
current_index["index"] -= 1
|
319 |
+
|
320 |
+
return load_example(current_index["index"])
|
321 |
|
322 |
+
def deactivate_participant_id(participant_id, lets_go, total, previous_button, next_button, sentence_text, audio_player, emotions, confidence, comments, ann_completed):
|
323 |
+
global file_list
|
324 |
+
global total_annotations
|
325 |
+
if participant_id in possible_ids.keys():
|
326 |
+
file_list = pd.read_csv(os.path.join(persistent_storage, 'files_to_annotate_2round', f'group_{possible_ids[participant_id]}.csv'))
|
327 |
|
328 |
+
participant_id = gr.Textbox(label='What is your participant ID?', value = participant_id, interactive = False)
|
329 |
+
lets_go = gr.Button("Participant selected!", interactive = False)
|
330 |
+
|
331 |
+
total_annotations = len(file_list)
|
332 |
+
total = gr.Number(total_annotations, visible=False)
|
333 |
|
|
|
|
|
|
|
|
|
|
|
334 |
|
335 |
+
ann_completed, sentence, audio_player, emotions, confidence, current_index['index'], comments = load_first_example(participant_id, ann_completed)
|
336 |
+
|
337 |
+
emotions = gr.Radio(["Blank", "Joy", "Sad", "Angry", "Neutral"], label="Predominant Emotion", value = emotions, visible = True)
|
338 |
+
confidence = gr.Slider(label="How confident are you that the annotated emotion is present in the recording? (%)", minimum=0, maximum=100, step=10, visible = True, value = confidence)
|
339 |
+
comments = gr.Textbox(label="Comments", visible =True, value = comments)
|
340 |
+
previous_button = gr.Button("Previous Example", visible = True)
|
341 |
+
next_button = gr.Button("Next Example",visible = True)
|
342 |
+
|
343 |
+
else:
|
344 |
+
gr.Warning("Please insert a valid participant ID")
|
345 |
+
return participant_id, lets_go, total, previous_button, next_button, sentence_text, audio_player, emotions, confidence, comments, ann_completed
|
346 |
+
|
347 |
# ===================
|
348 |
# Gradio Interface
|
349 |
# ===================
|
|
|
383 |
|
384 |
with gr.Tab("Annotation Interface"):
|
385 |
ann_completed = gr.Number(0, visible=False)
|
386 |
+
total = gr.Number(0, visible=False)
|
387 |
# Row with progress bar
|
388 |
|
389 |
gr.HTML("""
|
|
|
432 |
inputs=[emotions, confidence, comments, participant_id, ann_completed],
|
433 |
outputs=[sentence_text, audio_player, emotions, confidence, ann_completed, comments],
|
434 |
).then(None, [], [ann_completed, total], js = js_progress_bar)
|
|
|
|
|
435 |
|
436 |
+
buttons = [previous_button, next_button]
|
437 |
+
data = [sentence_text, audio_player, emotions, confidence, comments]
|
438 |
+
lets_go.click(deactivate_participant_id, [participant_id, lets_go, total, *buttons, *data, ann_completed], [participant_id, lets_go, total, *buttons, *data, ann_completed]).then( None, [], [ann_completed, total], js = js_progress_bar)
|
439 |
+
|
440 |
|
441 |
with gr.Tab("Access Files"):
|
442 |
with gr.Row():
|
|
|
450 |
get_files_button.click(get_storage, inputs= [password], outputs=[files, storage], postprocess=False)
|
451 |
|
452 |
|
453 |
+
demo.launch(allowed_paths = ['/data/files_to_annotate_2round'])
|
454 |
|
files_to_annotate_padded_smaller_emotion_set/002/002-0035.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:14c71ba98601d6a8bfc20e354ccde13275391a811a243ad0d5182d86659ab293
|
3 |
-
size 198956
|
|
|
|
|
|
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0057.wav
DELETED
Binary file (90.3 kB)
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0061.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:df234dc09991531122d303b12915cb344b9e1d83ed17e994c58ff261c744e2a5
|
3 |
-
size 203708
|
|
|
|
|
|
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0070.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:99921e1d55902b9f29c66fca97f6713033a1f57377d1e4febf08d7d462d585c8
|
3 |
-
size 183552
|
|
|
|
|
|
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0076.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:9bf2bb7a826622bed62013cd7bf163176c474a501284fa43c743344d1c0172ad
|
3 |
-
size 282428
|
|
|
|
|
|
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0080.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:28776f505414e937277e60f71632ed179b52c741fe37c2e80389d346afab3ba1
|
3 |
-
size 204620
|
|
|
|
|
|
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0081.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:4c3c93632a4ebcc40d7f03d95c24b4612e8d19e9c4f6c2b97a7106f0938d4af6
|
3 |
-
size 108576
|
|
|
|
|
|
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0107.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:e5087f893589b22fa4d0305a623abf9a4bc44f7d5a7396890737411df83ae39a
|
3 |
-
size 132620
|
|
|
|
|
|
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0152.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:bfb40acadcb838abf688ab815137b5d7a8dcd055564e59eb40d4de56ca3a2911
|
3 |
-
size 249882
|
|
|
|
|
|
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0155.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:e1cab437cd33680b552801264483a2562e73c676542c5e348d64b1425173b33c
|
3 |
-
size 447836
|
|
|
|
|
|
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0165.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:2aa8d0ee040bad3b69432de5db7b304e5b51b2dcd2bc17021b3931798f2cecac
|
3 |
-
size 170106
|
|
|
|
|
|
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0196.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:1dd3945892c7bb8c8ce983a638f9c2f2865706152cfffd9c4913afb20f57040f
|
3 |
-
size 145100
|
|
|
|
|
|
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0197.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:1efecfb8e3291d344d24ebba92c0c9a0239808b8b1e90ee98f0b4f0e9321046d
|
3 |
-
size 507212
|
|
|
|
|
|
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0210.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:4cc7b5f40c1e5fb56bcc540df7e73b459dd7873e4ff1a34925be20fc7b486592
|
3 |
-
size 167180
|
|
|
|
|
|
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0227.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:737a7e4b38050bbf9bb13c0a45e9cc0da0c48f206667d52786f4b6c02c5e114a
|
3 |
-
size 128924
|
|
|
|
|
|
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0237.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:7fc061371b0cf2d4c1418880527f6cb17504ff9c87494b33c3b9ebb5c9e0eeaa
|
3 |
-
size 262316
|
|
|
|
|
|
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0256.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:6223cf7419aad597dc435647fb255ba03f2576b566cb579c2325878e7497ce5c
|
3 |
-
size 255594
|
|
|
|
|
|
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0257.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:04808f0449a0b869dcd3ec8b08577ef7b2656675bb884bdbd62305cc53ff2a6c
|
3 |
-
size 273834
|
|
|
|
|
|
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0261.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:0e51b19514c981aeaff85180ff3b6e5935f81cc1cdf85d03215d894553859fdf
|
3 |
-
size 285404
|
|
|
|
|
|
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0320.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:5fcfc22e695ba85912b3d2fc1b3ece5988902720dfe838b8fed47f21a0124ec1
|
3 |
-
size 113418
|
|
|
|
|
|
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0346.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:e2b7b601a1ff4156def2ed2badfc388345fc5c141e821f2ae7150a8c4d5cfbba
|
3 |
-
size 116252
|
|
|
|
|
|
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0378.wav
DELETED
Binary file (89.4 kB)
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0417.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:983972b15e03f4a1873e28d24a680d73664a1e11209c2e55c4d45d094844faaf
|
3 |
-
size 146972
|
|
|
|
|
|
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0418.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:0ad6e0d7963d51de31f465246347b69521b72cb89e2968d50e82e2e84f7a18d8
|
3 |
-
size 135452
|
|
|
|
|
|
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0419.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:0075b1fbc6a20d6c807d8e0c1c56608be61e9b01a59ec2fd6db2bc498b8b2c2c
|
3 |
-
size 158588
|
|
|
|
|
|
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0424.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:149a45880fdac3aa6f7b0b4dd2e879a049233d2390e47920375137ded0f9dd10
|
3 |
-
size 126816
|
|
|
|
|
|
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0431.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:4e92bd58cad0f880b2621bb9497adcb0d0455ba1b9e64126a3b2576d4ac68d90
|
3 |
-
size 151872
|
|
|
|
|
|
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0448.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:07350c2223751f28a14528eb0c25c8782d5f888a1fce947662cd215627469699
|
3 |
-
size 203712
|
|
|
|
|
|
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0464.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:73787c593f0b56495812a820518391623a2bd8e80da5909f52975ea323cf13c0
|
3 |
-
size 120140
|
|
|
|
|
|
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0468.wav
DELETED
Binary file (99 kB)
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0485.wav
DELETED
Binary file (95.2 kB)
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0503.wav
DELETED
Binary file (86.5 kB)
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0504.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:9f40f61253670571f85c9a0ce0b07116733fea7633eae5faadf84e23ec624e9c
|
3 |
-
size 232512
|
|
|
|
|
|
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0513.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:05cd90cacd8134a73617ae6ef7194d0635cc918e67407339d6dd395c4a59559c
|
3 |
-
size 103772
|
|
|
|
|
|
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0522.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:c8c2ceeed2460d2e52e46f8d208d88ab040fc3cc81e29982cc2c8518a6292565
|
3 |
-
size 322700
|
|
|
|
|
|
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0526.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:7336f827941d9ecbd23f48b54b7de3d226af7983038c6a6b0f96de842034ba5e
|
3 |
-
size 118220
|
|
|
|
|
|
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0530.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:a080b3c7a362b548ba7f631b980bf75ee13ff9eed3a2421f9907473c1e8fae95
|
3 |
-
size 174860
|
|
|
|
|
|
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0562.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:0925fd9bdaedbab7a0b3409324c8d6a8344cde878699d3dd34932f1cdd295c69
|
3 |
-
size 204764
|
|
|
|
|
|
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0573.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:105c851a83a1e1e9452f9650df961a8b89129238551eed8b46c73573d9e79791
|
3 |
-
size 116204
|
|
|
|
|
|
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0581.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:7fd110ac0ffa2afd53eabea39538e9271be233333c41371608a67e9597ae9eac
|
3 |
-
size 167180
|
|
|
|
|
|
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0589.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:a37cfb591d608e5215012d4c0e427b95f9eb94e233c71e037b1250f42567c5c6
|
3 |
-
size 112412
|
|
|
|
|
|
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0598.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:576cf1c0abcc08850aa0cf58f12f5c511bf393b6b40b7818baab29195f7621bf
|
3 |
-
size 148940
|
|
|
|
|
|
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0603.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:8e140b1f3a3fb2921070b51f04f21e8cf49de288eeb33ee6e5154f1d75a29a31
|
3 |
-
size 128736
|
|
|
|
|
|
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0610.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:45bbbf1c7c1b66d0cac25f8ec9f58f9ff5436458056b662e7e734cc7e4665907
|
3 |
-
size 357308
|
|
|
|
|
|
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0611.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:0384553af653ae9f43e4fd2e7817d14cf55570df5db4866bdcd56f4420ca3ef6
|
3 |
-
size 142172
|
|
|
|
|
|
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0615.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:01ccecbeacbfed2d0f3ace3c40fba9925955cab382489dc40cf715b2bb530f39
|
3 |
-
size 161424
|
|
|
|
|
|
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0624.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:acc38e184d4c4ffa3456d73c426a4b682b11b730bec9561bfc29a63dcf02e98c
|
3 |
-
size 215180
|
|
|
|
|
|
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0645.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:910e222e8b9b63e39eab06cf572dd9deb0b66159ca77a6d3f115a245f76320ed
|
3 |
-
size 141164
|
|
|
|
|
|
|
|
files_to_annotate_padded_smaller_emotion_set/002/002-0646.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:881c8f60252e74a7d0146a2c1a5b31bfea2096e941b41297fa6c694865ac87f7
|
3 |
-
size 235296
|
|
|
|
|
|
|
|