Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -18,11 +18,12 @@ model_links = {
|
|
18 |
|
19 |
# Pull info about the model to display
|
20 |
model_info = {
|
21 |
-
"
|
22 |
-
'description': """The **
|
23 |
}
|
24 |
}
|
25 |
|
|
|
26 |
# Reset the conversation
|
27 |
def reset_conversation():
|
28 |
st.session_state.conversation = []
|
@@ -35,10 +36,10 @@ st.subheader("AI chatbot for Solving your doubts 📚 :)")
|
|
35 |
|
36 |
# Custom description for SciMom in the sidebar
|
37 |
st.sidebar.write("Built for my mom, with love ❤️. This model is pretrained with textbooks of Science NCERT.")
|
38 |
-
st.sidebar.write("Base-Model used:
|
39 |
|
40 |
# Add technical details in the sidebar
|
41 |
-
st.sidebar.markdown(model_info["
|
42 |
st.sidebar.markdown("""
|
43 |
### Zephyr 7B β 🤖
|
44 |
Your personal science assistant, built with **7 billion parameters** to help with all your science Q&As.
|
|
|
18 |
|
19 |
# Pull info about the model to display
|
20 |
model_info = {
|
21 |
+
"Zephyr-7B-β": {
|
22 |
+
'description': """The **Zephyr 7B β** is a next-gen **GPT-like Large Language Model (LLM)** fine-tuned from Mistral-7B-v0.1, containing 7 billion parameters. This model is optimized for educational tasks and excels at science-related Q&A with high accuracy and performance.\n"""
|
23 |
}
|
24 |
}
|
25 |
|
26 |
+
|
27 |
# Reset the conversation
|
28 |
def reset_conversation():
|
29 |
st.session_state.conversation = []
|
|
|
36 |
|
37 |
# Custom description for SciMom in the sidebar
|
38 |
st.sidebar.write("Built for my mom, with love ❤️. This model is pretrained with textbooks of Science NCERT.")
|
39 |
+
st.sidebar.write("Base-Model used: Mistral-7B \n, Fine-Tuned : HF/Zephyr-7B-Beta,\n trained using: Docker AutoTrain.")
|
40 |
|
41 |
# Add technical details in the sidebar
|
42 |
+
st.sidebar.markdown(model_info["Zephyr-7B-β"]['description'])
|
43 |
st.sidebar.markdown("""
|
44 |
### Zephyr 7B β 🤖
|
45 |
Your personal science assistant, built with **7 billion parameters** to help with all your science Q&As.
|