Niharmahesh commited on
Commit
1cb6837
·
verified ·
1 Parent(s): 62cec71

Update projects.py

Browse files
Files changed (1) hide show
  1. projects.py +51 -11
projects.py CHANGED
@@ -6,6 +6,8 @@ def display_projects():
6
 
7
  # Define tab titles
8
  tab_titles = [
 
 
9
  "AdHubby: AI-Powered Marketing Campaign Generator",
10
  "Resume & CV Crafter",
11
  "Multi-Agent Job Search",
@@ -25,6 +27,44 @@ def display_projects():
25
 
26
  # Add content to each tab
27
  with tabs[0]:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  st.subheader("AdHubby: AI-Powered Marketing Campaign Generator")
29
  st.markdown("""
30
  - **Description**: Multi-agent multimodal AI system that creates comprehensive marketing campaigns by combining strategic analysis, visual generation, and local landmark integration for small businesses
@@ -42,7 +82,7 @@ def display_projects():
42
  - **Achievement**: 🏆 **Tenstorrent Multi-Agent Hackathon Recognition** - Built in **5** hours
43
  - **Reference**: [GitHub Repository](https://github.com/niharpalem/AdHubby.com)
44
  """)
45
- with tabs[1]:
46
  st.subheader("LLM-powered Resume & CV Crafter")
47
  st.markdown("""
48
  - **Description**: Developed AI platform combining LLaMA-3 70B and Deepseek R1 with low-temperature settings for stable, tailored resume and CV generation
@@ -59,7 +99,7 @@ def display_projects():
59
  - **Reference**: [Link to Project](https://huggingface.co/spaces/Niharmahesh/Resume_and_CV_crafter)
60
  """)
61
 
62
- with tabs[2]:
63
  st.subheader("Multi-Agent Job Search System")
64
  st.markdown("""
65
  - **Description**: Built an AI-powered job search assistant using dual-LLaMA architecture for comprehensive job matching and analysis
@@ -75,7 +115,7 @@ def display_projects():
75
  - **Reference**: [Link to Project](https://huggingface.co/spaces/Niharmahesh/Multi_Agent_Job_search_and_match)
76
  """)
77
 
78
- with tabs[3]:
79
  st.subheader("Resume Easz")
80
  st.markdown("""
81
  - **Description**: Created an AI-driven resume analysis and enhancement tool using LLaMA 3.3 model
@@ -92,7 +132,7 @@ def display_projects():
92
  - **Reference**: [Link to Project](https://resume-easz.streamlit.app/)
93
  """)
94
 
95
- with tabs[4]:
96
  st.subheader("Job Easz")
97
  st.markdown("""
98
  - **Description**: Engineered comprehensive job aggregation platform for data roles with advanced analytics
@@ -109,7 +149,7 @@ def display_projects():
109
  - **Reference**: [Link to Project](https://huggingface.co/spaces/Niharmahesh/job_easz)
110
  """)
111
 
112
- with tabs[5]:
113
  st.subheader("Bitcoin Lightning Path Optimization")
114
  st.markdown("""
115
  - **Description**: Advanced payment routing optimization system for Bitcoin Lightning Network
@@ -124,7 +164,7 @@ def display_projects():
124
  - **Technologies**: XGBoost, Random Forest, AdaBoost, Graph Algorithms
125
  """)
126
 
127
- with tabs[6]:
128
  st.subheader("National Infrastructure Monitoring")
129
  st.markdown("""
130
  - **Description**: Developed satellite imagery analysis system for infrastructure change detection
@@ -141,7 +181,7 @@ def display_projects():
141
  - **Reference**: [Link to Project](https://huggingface.co/spaces/Niharmahesh/Data298)
142
  """)
143
 
144
- with tabs[7]:
145
  st.subheader("Stock Market Analysis with OpenAI Integration")
146
  st.markdown("""
147
  - **Description**: Created comprehensive stock market analysis system with multilingual capabilities
@@ -157,7 +197,7 @@ def display_projects():
157
  - **Technologies**: PySpark, Apache Airflow, Snowflake, OpenAI GPT-3.5
158
  """)
159
 
160
- with tabs[8]:
161
  st.subheader("Twitter Trend Analysis")
162
  st.markdown("""
163
  - **Description**: Engineered comprehensive Twitter analytics platform using GCP services
@@ -173,7 +213,7 @@ def display_projects():
173
  - **Technologies**: Google Cloud Platform, BigQuery, Apache Airflow, Tableau
174
  """)
175
 
176
- with tabs[9]:
177
  st.subheader("Restaurant Recommendation System")
178
  st.markdown("""
179
  - **Description**: Built hybrid recommendation system combining multiple filtering approaches
@@ -189,7 +229,7 @@ def display_projects():
189
  - **Technologies**: Collaborative Filtering, Content-Based Filtering, Flask, Folium
190
  """)
191
 
192
- with tabs[10]:
193
  st.subheader("ASL Translator")
194
  st.markdown("""
195
  - **Description**: Developed real-time American Sign Language translation system
@@ -206,7 +246,7 @@ def display_projects():
206
  - **Reference**: [Link to Project](https://huggingface.co/spaces/Niharmahesh/slr-easz)
207
  """)
208
 
209
- with tabs[11]:
210
  st.subheader("Squat Easy")
211
  st.markdown("""
212
  - **Description**: Developed deep learning system for squat form analysis and error detection
 
6
 
7
  # Define tab titles
8
  tab_titles = [
9
+ "Semantic Video Search",
10
+ "Video-QA System",
11
  "AdHubby: AI-Powered Marketing Campaign Generator",
12
  "Resume & CV Crafter",
13
  "Multi-Agent Job Search",
 
27
 
28
  # Add content to each tab
29
  with tabs[0]:
30
+ st.subheader("🏆 Semantic Video Search")
31
+ st.markdown("**Winner - Liquid AI Hackathon** | Nov 2025")
32
+ st.markdown("""
33
+ - **Description**: Multimodal app for AI-driven video analysis and semantic search using LiquidAI's LFM2 models
34
+ - **Key Features**:
35
+ • Frame-by-frame analysis with LFM2-VL-450M
36
+ • Smart filtering to skip redundant frames
37
+ • Semantic search with transformer embeddings
38
+ • Clip extraction around matched frames
39
+ • YouTube URL + video upload support
40
+ - **Technical Implementation**:
41
+ • Temporal context modeling (t-1, t, t+1)
42
+ • 384-d sentence transformer embeddings (MiniLM-L6-v2)
43
+ • Top-K retrieval with cosine similarity
44
+ • Real-time progress tracking
45
+ - **Technologies**: LFM2-VL-450M, MiniLM-L6-v2, PyTorch, OpenCV, Streamlit, yt-dlp
46
+ - **Skills**: Computer Vision, Vision-Language Models, Semantic Search
47
+ """)
48
+
49
+ # Video-QA System
50
+ with tabs[1]:
51
+ st.subheader("Video-QA System")
52
+ st.markdown("**E2B + Groq + MCP + Notion** | Nov 2025")
53
+ st.markdown("""
54
+ - **Description**: Video Question-Answering system that processes videos in E2B sandbox, generates frame summaries via Groq VLM, and stores knowledge in Notion through MCP
55
+ - **Key Features**:
56
+ • Frame extraction + VLM analysis in isolated E2B VM
57
+ • MCP integration for structured video knowledge storage
58
+ • Chat interface for context-based Q&A
59
+ • Timestamp-accurate answers from video context
60
+ • YouTube links + local upload support
61
+ - **Motivation**: Solve difficulty of revisiting complex YouTube walkthroughs—turning videos into searchable, chat-ready knowledge bases
62
+ - **Technologies**: E2B, Groq API, Model Context Protocol (MCP), Notion API, VLM
63
+ - **Demo**: [YouTube Demo](https://youtu.be/u08LN_Gh4HE)
64
+ - **Reference**: [GitHub](https://github.com/niharpalem/VideoQA)
65
+ """)
66
+
67
+ with tabs[2]:
68
  st.subheader("AdHubby: AI-Powered Marketing Campaign Generator")
69
  st.markdown("""
70
  - **Description**: Multi-agent multimodal AI system that creates comprehensive marketing campaigns by combining strategic analysis, visual generation, and local landmark integration for small businesses
 
82
  - **Achievement**: 🏆 **Tenstorrent Multi-Agent Hackathon Recognition** - Built in **5** hours
83
  - **Reference**: [GitHub Repository](https://github.com/niharpalem/AdHubby.com)
84
  """)
85
+ with tabs[3]:
86
  st.subheader("LLM-powered Resume & CV Crafter")
87
  st.markdown("""
88
  - **Description**: Developed AI platform combining LLaMA-3 70B and Deepseek R1 with low-temperature settings for stable, tailored resume and CV generation
 
99
  - **Reference**: [Link to Project](https://huggingface.co/spaces/Niharmahesh/Resume_and_CV_crafter)
100
  """)
101
 
102
+ with tabs[4]:
103
  st.subheader("Multi-Agent Job Search System")
104
  st.markdown("""
105
  - **Description**: Built an AI-powered job search assistant using dual-LLaMA architecture for comprehensive job matching and analysis
 
115
  - **Reference**: [Link to Project](https://huggingface.co/spaces/Niharmahesh/Multi_Agent_Job_search_and_match)
116
  """)
117
 
118
+ with tabs[5]:
119
  st.subheader("Resume Easz")
120
  st.markdown("""
121
  - **Description**: Created an AI-driven resume analysis and enhancement tool using LLaMA 3.3 model
 
132
  - **Reference**: [Link to Project](https://resume-easz.streamlit.app/)
133
  """)
134
 
135
+ with tabs[6]:
136
  st.subheader("Job Easz")
137
  st.markdown("""
138
  - **Description**: Engineered comprehensive job aggregation platform for data roles with advanced analytics
 
149
  - **Reference**: [Link to Project](https://huggingface.co/spaces/Niharmahesh/job_easz)
150
  """)
151
 
152
+ with tabs[7]:
153
  st.subheader("Bitcoin Lightning Path Optimization")
154
  st.markdown("""
155
  - **Description**: Advanced payment routing optimization system for Bitcoin Lightning Network
 
164
  - **Technologies**: XGBoost, Random Forest, AdaBoost, Graph Algorithms
165
  """)
166
 
167
+ with tabs[8]:
168
  st.subheader("National Infrastructure Monitoring")
169
  st.markdown("""
170
  - **Description**: Developed satellite imagery analysis system for infrastructure change detection
 
181
  - **Reference**: [Link to Project](https://huggingface.co/spaces/Niharmahesh/Data298)
182
  """)
183
 
184
+ with tabs[9]:
185
  st.subheader("Stock Market Analysis with OpenAI Integration")
186
  st.markdown("""
187
  - **Description**: Created comprehensive stock market analysis system with multilingual capabilities
 
197
  - **Technologies**: PySpark, Apache Airflow, Snowflake, OpenAI GPT-3.5
198
  """)
199
 
200
+ with tabs[10]:
201
  st.subheader("Twitter Trend Analysis")
202
  st.markdown("""
203
  - **Description**: Engineered comprehensive Twitter analytics platform using GCP services
 
213
  - **Technologies**: Google Cloud Platform, BigQuery, Apache Airflow, Tableau
214
  """)
215
 
216
+ with tabs[11]:
217
  st.subheader("Restaurant Recommendation System")
218
  st.markdown("""
219
  - **Description**: Built hybrid recommendation system combining multiple filtering approaches
 
229
  - **Technologies**: Collaborative Filtering, Content-Based Filtering, Flask, Folium
230
  """)
231
 
232
+ with tabs[12]:
233
  st.subheader("ASL Translator")
234
  st.markdown("""
235
  - **Description**: Developed real-time American Sign Language translation system
 
246
  - **Reference**: [Link to Project](https://huggingface.co/spaces/Niharmahesh/slr-easz)
247
  """)
248
 
249
+ with tabs[13]:
250
  st.subheader("Squat Easy")
251
  st.markdown("""
252
  - **Description**: Developed deep learning system for squat form analysis and error detection