adding math models
Browse files
app.py
CHANGED
@@ -88,12 +88,11 @@ def gradio_adapted_RAG(model_name, query):
|
|
88 |
return generated_answer
|
89 |
|
90 |
|
91 |
-
dropdown = gr.Dropdown(choices=["
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
"
|
96 |
-
"microsoft/orca-math-word-problems-200k"], label="Choose a model")
|
97 |
|
98 |
iface = gr.Interface(fn=gradio_adapted_RAG, inputs=[dropdown, "text"], outputs="text")
|
99 |
iface.launch()
|
|
|
88 |
return generated_answer
|
89 |
|
90 |
|
91 |
+
dropdown = gr.Dropdown(choices=["tbs17/MathBERT",
|
92 |
+
"witiko/mathberta",
|
93 |
+
"meta-math/MetaMath-Mistral-7B",
|
94 |
+
"deepseek-ai/deepseek-math-7b-instruct",
|
95 |
+
"MaziyarPanahi/WizardLM-Math-70B-v0.1"], label="Choose a model")
|
|
|
96 |
|
97 |
iface = gr.Interface(fn=gradio_adapted_RAG, inputs=[dropdown, "text"], outputs="text")
|
98 |
iface.launch()
|