Update app.py
Browse files
app.py
CHANGED
@@ -5,12 +5,30 @@ client = InferenceClient(
|
|
5 |
"mistralai/Mixtral-8x7B-Instruct-v0.1"
|
6 |
)
|
7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
# Function to handle dynamic content display
|
9 |
def show_info(section):
|
10 |
if section == "Experiences":
|
11 |
return "Details about Rishiraj's experiences..."
|
12 |
elif section == "Communities":
|
13 |
-
return
|
14 |
elif section == "Recommendations":
|
15 |
return "Rishiraj's recommendations..."
|
16 |
elif section == "Conferences":
|
@@ -25,15 +43,14 @@ with gr.Blocks() as app:
|
|
25 |
gr.Markdown("# Hi 👋, I'm Rishiraj Acharya (ঋষিরাজ আচার্য্য)")
|
26 |
gr.Markdown("## Google Developer Expert in ML ✨ | Hugging Face Fellow 🤗 | GSoC '22 at TensorFlow 👨🏻🔬 | TFUG Kolkata Organizer 🎙️ | Kaggle Master 🧠 | Dynopii ML Engineer 👨🏻💻")
|
27 |
gr.Markdown("**I work with natural language understanding, machine translation, named entity recognition, question answering, topic segmentation, and automatic speech recognition. My work typically relies on very large quantities of data and innovative methods in deep learning to tackle user challenges around the world — in languages from around the world. My areas of work include Natural Language Engineering, Language Modeling, Text-to-Speech Software Engineering, Speech Frameworks Engineering, Data Science, and Research.**")
|
28 |
-
gr.Markdown("📫 How to reach me **[[email protected]](mailto:[email protected])**")
|
29 |
gr.Markdown("⚡ Fun fact **I’m a national level Chess player, a swimming champion and I can lecture for hours on the outer reaches of space and the craziness of astrophysics.**")
|
30 |
-
gr.HTML(value='<p align="center"><a href="https://twitter.com/rishirajacharya" target="blank"><img align="center" src="https://raw.githubusercontent.com/rahuldkjain/github-profile-readme-generator/master/src/images/icons/Social/twitter.svg" alt="rishirajacharya" height="30" width="40" /></a></p>')
|
31 |
with gr.Column():
|
32 |
gr.Image("profile.png")
|
33 |
|
34 |
with gr.Row():
|
35 |
section_dropdown = gr.Dropdown(["Experiences", "Communities", "Recommendations", "Conferences"], label="Select Information to Display")
|
36 |
-
info_display = gr.
|
37 |
|
38 |
section_dropdown.change(show_info, inputs=section_dropdown, outputs=info_display)
|
39 |
|
|
|
5 |
"mistralai/Mixtral-8x7B-Instruct-v0.1"
|
6 |
)
|
7 |
|
8 |
+
communities = '''
|
9 |
+
<h3 align="left">Communities:</h3>
|
10 |
+
|
11 |
+
<ul>
|
12 |
+
<li>
|
13 |
+
<p><strong><em><a href="https://developers.google.com/community/experts/directory?text=rishiraj">Google Developer Expert</a> in Machine Learning (Generative AI)</em></strong><br />
|
14 |
+
A Google Developers Expert (GDE) is a person recognized by Google as having exemplary expertise in web technologies or Google Developers products.</p>
|
15 |
+
</li>
|
16 |
+
<li>
|
17 |
+
<p><strong><em><a href="https://twitter.com/TFUGKol">TensorFlow User Group Kolkata</a> (Organizer)</em></strong><br />
|
18 |
+
TensorFlow User Groups (TFUGs) are communities of developers, engineers, data scientists, and ML practitioners who are passionate about TensorFlow and related technologies.</p>
|
19 |
+
</li>
|
20 |
+
<li>
|
21 |
+
<p><strong><em><a href="https://gdg.community.dev/gdg-cloud-kolkata/">Google Developer Groups Cloud Kolkata</a> (Volunteer)</em></strong><br />
|
22 |
+
Google Developer Groups (GDGs) Cloud are communities of developers, engineers, and cloud architects who are passionate about Google Cloud Platform and related technologies.</p>
|
23 |
+
</li>
|
24 |
+
</ul>'''
|
25 |
+
|
26 |
# Function to handle dynamic content display
|
27 |
def show_info(section):
|
28 |
if section == "Experiences":
|
29 |
return "Details about Rishiraj's experiences..."
|
30 |
elif section == "Communities":
|
31 |
+
return communities
|
32 |
elif section == "Recommendations":
|
33 |
return "Rishiraj's recommendations..."
|
34 |
elif section == "Conferences":
|
|
|
43 |
gr.Markdown("# Hi 👋, I'm Rishiraj Acharya (ঋষিরাজ আচার্য্য)")
|
44 |
gr.Markdown("## Google Developer Expert in ML ✨ | Hugging Face Fellow 🤗 | GSoC '22 at TensorFlow 👨🏻🔬 | TFUG Kolkata Organizer 🎙️ | Kaggle Master 🧠 | Dynopii ML Engineer 👨🏻💻")
|
45 |
gr.Markdown("**I work with natural language understanding, machine translation, named entity recognition, question answering, topic segmentation, and automatic speech recognition. My work typically relies on very large quantities of data and innovative methods in deep learning to tackle user challenges around the world — in languages from around the world. My areas of work include Natural Language Engineering, Language Modeling, Text-to-Speech Software Engineering, Speech Frameworks Engineering, Data Science, and Research.**")
|
|
|
46 |
gr.Markdown("⚡ Fun fact **I’m a national level Chess player, a swimming champion and I can lecture for hours on the outer reaches of space and the craziness of astrophysics.**")
|
47 |
+
gr.HTML(value='<br><p align="center"><a href="https://twitter.com/rishirajacharya" target="blank"><img align="center" src="https://raw.githubusercontent.com/rahuldkjain/github-profile-readme-generator/master/src/images/icons/Social/twitter.svg" alt="rishirajacharya" height="30" width="40" /></a></p>')
|
48 |
with gr.Column():
|
49 |
gr.Image("profile.png")
|
50 |
|
51 |
with gr.Row():
|
52 |
section_dropdown = gr.Dropdown(["Experiences", "Communities", "Recommendations", "Conferences"], label="Select Information to Display")
|
53 |
+
info_display = gr.HTML(label="Information")
|
54 |
|
55 |
section_dropdown.change(show_info, inputs=section_dropdown, outputs=info_display)
|
56 |
|