Spaces:
Starting on CPU Upgrade
Starting on CPU Upgrade
Update app.py
Browse files
app.py
CHANGED
|
@@ -94,6 +94,8 @@ st.markdown(
|
|
| 94 |
st.title("Instructor Support Tool")
|
| 95 |
if not (pipeline.isGPU or pipeline.isTPU):
|
| 96 |
st.warning("TOOL CURRENTLY USING CPU, ANALYSIS EXTREMELY SLOW")
|
|
|
|
|
|
|
| 97 |
|
| 98 |
DEMO_VIDEO_URL = "https://www.youtube.com/watch?v=n7Z_BzU7yOY"
|
| 99 |
|
|
@@ -199,7 +201,10 @@ if st.sidebar.button("Multiple Files Demo"):
|
|
| 199 |
st.sidebar.caption(
|
| 200 |
"Single File Demo (Sample) analyzes a 10-minute sample, while "
|
| 201 |
"Single File Demo (Full) analyzes the entire file. "
|
| 202 |
-
"Multiple Files Demo loads ten recording samples.
|
|
|
|
|
|
|
|
|
|
| 203 |
"Click on Rename Sample Speakers to try out the rename feature."
|
| 204 |
)
|
| 205 |
|
|
|
|
| 94 |
st.title("Instructor Support Tool")
|
| 95 |
if not (pipeline.isGPU or pipeline.isTPU):
|
| 96 |
st.warning("TOOL CURRENTLY USING CPU, ANALYSIS EXTREMELY SLOW")
|
| 97 |
+
st.warning("After performing one action, a *Running* icon will appear top right corner.")
|
| 98 |
+
st.warning("Please wait for this icon to disappear before performing another action.")
|
| 99 |
|
| 100 |
DEMO_VIDEO_URL = "https://www.youtube.com/watch?v=n7Z_BzU7yOY"
|
| 101 |
|
|
|
|
| 201 |
st.sidebar.caption(
|
| 202 |
"Single File Demo (Sample) analyzes a 10-minute sample, while "
|
| 203 |
"Single File Demo (Full) analyzes the entire file. "
|
| 204 |
+
"Multiple Files Demo loads ten recording samples."
|
| 205 |
+
)
|
| 206 |
+
st.sidebar.caption(
|
| 207 |
+
"After Single File Demo (Sample) is loaded, the Rename Sample Speakers button will appear"
|
| 208 |
"Click on Rename Sample Speakers to try out the rename feature."
|
| 209 |
)
|
| 210 |
|