Spaces:
Running on CPU Upgrade
Running on CPU Upgrade
Update app.py
Browse files
app.py
CHANGED
|
@@ -92,7 +92,7 @@ for j, tab in enumerate(audio_tabs):
|
|
| 92 |
st.session_state.results.append([])
|
| 93 |
st.session_state.results[j] = (speakerList,annotations)
|
| 94 |
|
| 95 |
-
if len(st.session_state.results > j
|
| 96 |
with st.spinner(text='Loading results...'):
|
| 97 |
# Display breakdowns
|
| 98 |
#--------------------------------------------------------------------------
|
|
|
|
| 92 |
st.session_state.results.append([])
|
| 93 |
st.session_state.results[j] = (speakerList,annotations)
|
| 94 |
|
| 95 |
+
if len(st.session_state.results) > j and len(st.session_state.results[j]) > 0:
|
| 96 |
with st.spinner(text='Loading results...'):
|
| 97 |
# Display breakdowns
|
| 98 |
#--------------------------------------------------------------------------
|