Update app.py
Browse files
app.py
CHANGED
@@ -5,6 +5,24 @@ client = InferenceClient(
|
|
5 |
"mistralai/Mixtral-8x7B-Instruct-v0.1"
|
6 |
)
|
7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
communities = '''
|
9 |
<h3 align="left">Communities:</h3>
|
10 |
|
@@ -23,14 +41,28 @@ Google Developer Groups (GDGs) Cloud are communities of developers, engineers, a
|
|
23 |
</li>
|
24 |
</ul>'''
|
25 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
# Function to handle dynamic content display
|
27 |
def show_info(section):
|
28 |
if section == "Experiences":
|
29 |
-
return
|
30 |
elif section == "Communities":
|
31 |
return communities
|
32 |
elif section == "Recommendations":
|
33 |
-
return
|
34 |
elif section == "Conferences":
|
35 |
return "Conferences attended by Rishiraj..."
|
36 |
else:
|
@@ -50,7 +82,7 @@ with gr.Blocks() as app:
|
|
50 |
|
51 |
with gr.Row():
|
52 |
section_dropdown = gr.Dropdown(["Experiences", "Communities", "Recommendations", "Conferences"], label="Select Information to Display")
|
53 |
-
info_display = gr.HTML(
|
54 |
|
55 |
section_dropdown.change(show_info, inputs=section_dropdown, outputs=info_display)
|
56 |
|
|
|
5 |
"mistralai/Mixtral-8x7B-Instruct-v0.1"
|
6 |
)
|
7 |
|
8 |
+
experiences = '''
|
9 |
+
<h3 align="left">Experiences:</h3>
|
10 |
+
|
11 |
+
<ul>
|
12 |
+
<li>
|
13 |
+
<p><strong><em><a href="https://dynopii.com/">Dynopii Inc.</a> (Machine Learning Engineer)</em></strong><br />
|
14 |
+
Working on ML pipelines for conversational AI, speech / audio generation, conversion and deployment.</p>
|
15 |
+
</li>
|
16 |
+
<li>
|
17 |
+
<p><strong><em><a href="https://www.prediqt.it/">PrediQt Business Solutions Pvt. Ltd.</a> (Senior AI/ML Engineer)</em></strong><br />
|
18 |
+
Worked on pretraining and supervised finetuning of Large Language Models for e-commerce platforms.</p>
|
19 |
+
</li>
|
20 |
+
<li>
|
21 |
+
<p><strong><em><a href="https://celebaltech.com/">Celebal Technologies Pvt. Ltd.</a> (Data Scientist)</em></strong><br />
|
22 |
+
Worked on Classical ML, NLP, Statistical Algorithm, Computer Vision, Deep Learning, Python and SQL.</p>
|
23 |
+
</li>
|
24 |
+
</ul>'''
|
25 |
+
|
26 |
communities = '''
|
27 |
<h3 align="left">Communities:</h3>
|
28 |
|
|
|
41 |
</li>
|
42 |
</ul>'''
|
43 |
|
44 |
+
recommendations = '''
|
45 |
+
<h3 align="left">Recommendations:</h3>
|
46 |
+
|
47 |
+
<p><strong><em><a href="https://sayak.dev">Sayak Paul</a></em></strong><br>
|
48 |
+
Machine Learning Engineer at <a href="https://hf.co/">Hugging Face</a>, GDE in ML, GSoC Mentor at TensorFlow, Intel Software Innovator</p>
|
49 |
+
|
50 |
+
<blockquote>
|
51 |
+
<p>Rishiraj and I worked together for a Kaggle Competition. I had already known Rishiraj and all his achievements by that time as he is my college junior. But after working together I got to witness how humble and how intelligent Rishiraj is.</p>
|
52 |
+
|
53 |
+
<p>I found Rishiraj to be a great communicator, an off-the-shelf and creative thinker, and a passionate hard-working individual. His quest for being able to apply ML skills creatively is infectious. I vividly remember how quickly he was able to incorporate an idea I had casually suggested into our competition pipeline notebook. He studied many relevant resources around object detection specific augmentation policies, and resolution discrepancy within no time and applied them in practice. In short, I learned a lot from him and I am even applying some of those learnings in my own projects.</p>
|
54 |
+
|
55 |
+
<p>Besides being great at ML, he’s also a chess player and is just as passionate about it. I wish Rishiraj an amazing career ahead.</p>
|
56 |
+
</blockquote>'''
|
57 |
+
|
58 |
# Function to handle dynamic content display
|
59 |
def show_info(section):
|
60 |
if section == "Experiences":
|
61 |
+
return experiences
|
62 |
elif section == "Communities":
|
63 |
return communities
|
64 |
elif section == "Recommendations":
|
65 |
+
return recommendations
|
66 |
elif section == "Conferences":
|
67 |
return "Conferences attended by Rishiraj..."
|
68 |
else:
|
|
|
82 |
|
83 |
with gr.Row():
|
84 |
section_dropdown = gr.Dropdown(["Experiences", "Communities", "Recommendations", "Conferences"], label="Select Information to Display")
|
85 |
+
info_display = gr.HTML()
|
86 |
|
87 |
section_dropdown.change(show_info, inputs=section_dropdown, outputs=info_display)
|
88 |
|