MartinKosela commited on
Commit
abe7f7d
1 Parent(s): 176ecc1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -65,7 +65,7 @@ st.write("")
65
  st.write("")
66
  st.write("")
67
 
68
- st.markdown("<h4 style='font-size:20px;'>Outline Your Application's Functionality:</h4>", unsafe_allow_html=True)
69
  description = st.text_area("", key="app_description")
70
 
71
  if description:
@@ -73,6 +73,9 @@ 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
  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:
 
65
  st.write("")
66
  st.write("")
67
 
68
+ st.markdown("<h4 style='font-size:20px;'>Outline below your app's functionality:</h4>", unsafe_allow_html=True)
69
  description = st.text_area("", key="app_description")
70
 
71
  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
+ st.write("")
77
+ st.write("")
78
+ st.write("")
79
  st.markdown("<h4 style='font-size:20px;'>Detail your dataset for fine-tuning this model:</h4>", unsafe_allow_html=True)
80
  dataset_description = st.text_area("", key="dataset_description")
81
  if dataset_description: