Spaces:
Sleeping
Sleeping
Bug fix
Browse files
state.py
CHANGED
|
@@ -531,7 +531,6 @@ def run_analysis_loop(file_names, file_paths_dict):
|
|
| 531 |
else:
|
| 532 |
with st.spinner(f"Processing Audio {i+1}/{totalFiles}"):
|
| 533 |
annotations, totalSeconds, waveform, sample_rate = pipeline(fpath)
|
| 534 |
-
)
|
| 535 |
st.session_state.results[fname] = (annotations, totalSeconds)
|
| 536 |
st.session_state.summaries[fname] = {}
|
| 537 |
st.session_state.unusedSpeakers[fname] = list(annotations.labels())
|
|
|
|
| 531 |
else:
|
| 532 |
with st.spinner(f"Processing Audio {i+1}/{totalFiles}"):
|
| 533 |
annotations, totalSeconds, waveform, sample_rate = pipeline(fpath)
|
|
|
|
| 534 |
st.session_state.results[fname] = (annotations, totalSeconds)
|
| 535 |
st.session_state.summaries[fname] = {}
|
| 536 |
st.session_state.unusedSpeakers[fname] = list(annotations.labels())
|