Spaces:
Sleeping
Sleeping
Commit
·
9830b8e
1
Parent(s):
b16e227
message
Browse files
app.py
CHANGED
@@ -1,11 +1,15 @@
|
|
1 |
import streamlit as st
|
2 |
|
|
|
|
|
|
|
|
|
|
|
3 |
genre = st.radio(
|
4 |
-
"
|
5 |
-
|
6 |
-
captions = ["Laugh out loud.", "Get the popcorn.", "Never stop learning."])
|
7 |
|
8 |
-
if genre ==
|
9 |
st.write('You selected comedy.')
|
10 |
else:
|
11 |
st.write("You didn\'t select comedy.")
|
|
|
1 |
import streamlit as st
|
2 |
|
3 |
+
radioButtonList = ["E-commerce CSV (https://www.kaggle.com/datasets/mervemenekse/ecommerce-dataset)",
|
4 |
+
"Upload my own CSV",
|
5 |
+
"Upload my own PDF",
|
6 |
+
"URL Chat with Google Alphabet's 2022 Q2 Earnings (https://shorturl.at/csCK3)",
|
7 |
+
"Enter my own URL (enable url input below)"]
|
8 |
genre = st.radio(
|
9 |
+
"Choose dataset to finetune", radioButtonList
|
10 |
+
)
|
|
|
11 |
|
12 |
+
if genre ==radioButtonList[0]:
|
13 |
st.write('You selected comedy.')
|
14 |
else:
|
15 |
st.write("You didn\'t select comedy.")
|