File size: 1,452 Bytes
db9e0be
 
 
 
e375379
a39d5ab
eac7635
00c34e7
db9e0be
00c34e7
 
a39d5ab
41229dc
db9e0be
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import streamlit as st
from streamlit_player import st_player

# Set the title and description
st.title('Evolving Zero Shot Classification Multimodal Agentic AI')
st.write('Created with DeepSeek-V3-Base') 
st.write('Images spawned (created) via: prithivMLmods/FLUX-LoRA-DLC | prithivMLmods/Fashion-Hut-Modeling-LoRA | Purz/neon-sign')
st.write('Prediction probabilities are deriving from: Zero Shot Image Classification')
st.write('Enhanced Goal Oriented Autonomy')
st.write('Additional Multimodal Agentic AI Layer of User interaction deriving from a non-organic algorithm (Agentic AI).')
st.write('Implements Natural Language Stopping (complete thoughts | sentences) (LLM Output)')
st.write('Responses are deriving from the mlx-community/Qwen2.5-7B-4bit LLM')
# 
# Display images and play videos in the specified order

video_file = open('classification_output.mp4', 'rb')
video_bytes = video_file.read()
st.video(video_bytes)

video_file = open('follow_up_output.mp4', 'rb')
video_bytes = video_file.read()
st.video(video_bytes)

video_file = open('response_output.mp4', 'rb')
video_bytes = video_file.read()
st.video(video_bytes)

video_file = open('classification_output_2.mp4', 'rb')
video_bytes = video_file.read()
st.video(video_bytes)

video_file = open('follow_up_output_2.mp4', 'rb')
video_bytes = video_file.read()
st.video(video_bytes)

video_file = open('response_output_2.mp4', 'rb')
video_bytes = video_file.read()
st.video(video_bytes)