Spaces:
Runtime error
Runtime error
Commit
·
0c32b91
1
Parent(s):
f5219e4
Update app.py
Browse files
app.py
CHANGED
@@ -22,7 +22,7 @@ st.caption("Linkedin: https://www.linkedin.com/in/mgrootendorst/")
|
|
22 |
form = st.sidebar.form("choose_settings")
|
23 |
|
24 |
form.header("Main Settings")
|
25 |
-
custom_doc = form.checkbox("Use a document from an existing dataset?")
|
26 |
if custom_doc:
|
27 |
dataset_name = form.text_area("Enter the name of the huggingface Dataset to do analysis of:", value = "Hellisotherpeople/DebateSum")
|
28 |
dataset_name_2 = form.text_area("Enter the name of the config for the dataset if it has one", value = "")
|
|
|
22 |
form = st.sidebar.form("choose_settings")
|
23 |
|
24 |
form.header("Main Settings")
|
25 |
+
custom_doc = form.checkbox("Use a document from an existing dataset?", value = True)
|
26 |
if custom_doc:
|
27 |
dataset_name = form.text_area("Enter the name of the huggingface Dataset to do analysis of:", value = "Hellisotherpeople/DebateSum")
|
28 |
dataset_name_2 = form.text_area("Enter the name of the config for the dataset if it has one", value = "")
|