Spaces:
Paused
Paused
instruct removed
Browse files
app.py
CHANGED
@@ -52,8 +52,7 @@ def load_all_models():
|
|
52 |
"summarization",
|
53 |
model="ak2603/mt5-small-synthetic-data-plus-translated"
|
54 |
),
|
55 |
-
"Llama 3.2": load_llama_model()
|
56 |
-
"Llama 7b Instruct": None # Placeholder
|
57 |
}
|
58 |
return models
|
59 |
|
@@ -68,7 +67,7 @@ with st.sidebar:
|
|
68 |
st.header("Configuration")
|
69 |
model_choice = st.selectbox(
|
70 |
"Select Model",
|
71 |
-
["mt5-small", "Llama 3.2"
|
72 |
index=0
|
73 |
)
|
74 |
|
|
|
52 |
"summarization",
|
53 |
model="ak2603/mt5-small-synthetic-data-plus-translated"
|
54 |
),
|
55 |
+
"Llama 3.2": load_llama_model()
|
|
|
56 |
}
|
57 |
return models
|
58 |
|
|
|
67 |
st.header("Configuration")
|
68 |
model_choice = st.selectbox(
|
69 |
"Select Model",
|
70 |
+
["mt5-small", "Llama 3.2"],
|
71 |
index=0
|
72 |
)
|
73 |
|