Spaces:
Sleeping
Sleeping
Commit
·
176ecc1
1
Parent(s):
99d63d2
Update app.py
Browse files
app.py
CHANGED
@@ -73,7 +73,8 @@ if description:
|
|
73 |
st.session_state.show_dataset_description = True
|
74 |
|
75 |
if 'show_dataset_description' in st.session_state and st.session_state.show_dataset_description:
|
76 |
-
|
|
|
77 |
if dataset_description:
|
78 |
if st.button("Recommend AI Model", key="recommend_model_button"):
|
79 |
recommended_model = recommend_ai_model_via_gpt(description, dataset_description)
|
|
|
73 |
st.session_state.show_dataset_description = True
|
74 |
|
75 |
if 'show_dataset_description' in st.session_state and st.session_state.show_dataset_description:
|
76 |
+
st.markdown("<h4 style='font-size:20px;'>Detail your dataset for fine-tuning this model:</h4>", unsafe_allow_html=True)
|
77 |
+
dataset_description = st.text_area("", key="dataset_description")
|
78 |
if dataset_description:
|
79 |
if st.button("Recommend AI Model", key="recommend_model_button"):
|
80 |
recommended_model = recommend_ai_model_via_gpt(description, dataset_description)
|