Removed: output.mp4 | output_2.mp4
Browse files
app.py
CHANGED
@@ -12,9 +12,6 @@ st.write('Implements Natural Language Stopping (LLM Output)')
|
|
12 |
st.write('Responses are deriving from the mlx-community/Qwen2.5-7B-4bit LLM')
|
13 |
|
14 |
# Display images and play videos in the specified order
|
15 |
-
video_file = open('output.mp4', 'rb')
|
16 |
-
video_bytes = video_file.read()
|
17 |
-
st.video(video_bytes)
|
18 |
|
19 |
video_file = open('classification_output.mp4', 'rb')
|
20 |
video_bytes = video_file.read()
|
@@ -28,10 +25,6 @@ video_file = open('response_output.mp4', 'rb')
|
|
28 |
video_bytes = video_file.read()
|
29 |
st.video(video_bytes)
|
30 |
|
31 |
-
video_file = open('output_2.mp4', 'rb')
|
32 |
-
video_bytes = video_file.read()
|
33 |
-
st.video(video_bytes)
|
34 |
-
|
35 |
video_file = open('classification_output_2.mp4', 'rb')
|
36 |
video_bytes = video_file.read()
|
37 |
st.video(video_bytes)
|
|
|
12 |
st.write('Responses are deriving from the mlx-community/Qwen2.5-7B-4bit LLM')
|
13 |
|
14 |
# Display images and play videos in the specified order
|
|
|
|
|
|
|
15 |
|
16 |
video_file = open('classification_output.mp4', 'rb')
|
17 |
video_bytes = video_file.read()
|
|
|
25 |
video_bytes = video_file.read()
|
26 |
st.video(video_bytes)
|
27 |
|
|
|
|
|
|
|
|
|
28 |
video_file = open('classification_output_2.mp4', 'rb')
|
29 |
video_bytes = video_file.read()
|
30 |
st.video(video_bytes)
|