Update app.py
Browse files
app.py
CHANGED
@@ -22,14 +22,14 @@ if "df" not in st.session_state:
|
|
22 |
st.session_state.df = None
|
23 |
|
24 |
# Dataset loading section
|
25 |
-
|
26 |
input_option = st.radio("Select Dataset Input:", ["Use Hugging Face Dataset", "Upload CSV File"])
|
27 |
|
28 |
if input_option == "Use Hugging Face Dataset":
|
29 |
dataset_name = st.text_input("Enter Hugging Face Dataset Name:", value="HUPD/hupd")
|
30 |
if st.button("Load Dataset"):
|
31 |
try:
|
32 |
-
#
|
33 |
dataset = load_dataset(dataset_name, name="sample", split="train", trust_remote_code=True, uniform_split=True)
|
34 |
st.session_state.df = pd.DataFrame(dataset)
|
35 |
st.success(f"Dataset '{dataset_name}' loaded successfully!")
|
@@ -37,8 +37,9 @@ if input_option == "Use Hugging Face Dataset":
|
|
37 |
st.error(f"Error loading dataset: {e}")
|
38 |
elif input_option == "Upload CSV File":
|
39 |
uploaded_file = st.file_uploader("Upload CSV File:", type=["csv"])
|
40 |
-
if uploaded_file:
|
41 |
try:
|
|
|
42 |
st.session_state.df = pd.read_csv(uploaded_file)
|
43 |
st.success("File uploaded successfully!")
|
44 |
except Exception as e:
|
|
|
22 |
st.session_state.df = None
|
23 |
|
24 |
# Dataset loading section
|
25 |
+
st.subheader("Load Dataset")
|
26 |
input_option = st.radio("Select Dataset Input:", ["Use Hugging Face Dataset", "Upload CSV File"])
|
27 |
|
28 |
if input_option == "Use Hugging Face Dataset":
|
29 |
dataset_name = st.text_input("Enter Hugging Face Dataset Name:", value="HUPD/hupd")
|
30 |
if st.button("Load Dataset"):
|
31 |
try:
|
32 |
+
# Load dataset and store it in session state
|
33 |
dataset = load_dataset(dataset_name, name="sample", split="train", trust_remote_code=True, uniform_split=True)
|
34 |
st.session_state.df = pd.DataFrame(dataset)
|
35 |
st.success(f"Dataset '{dataset_name}' loaded successfully!")
|
|
|
37 |
st.error(f"Error loading dataset: {e}")
|
38 |
elif input_option == "Upload CSV File":
|
39 |
uploaded_file = st.file_uploader("Upload CSV File:", type=["csv"])
|
40 |
+
if uploaded_file and st.button("Load CSV"):
|
41 |
try:
|
42 |
+
# Read uploaded CSV and store it in session state
|
43 |
st.session_state.df = pd.read_csv(uploaded_file)
|
44 |
st.success("File uploaded successfully!")
|
45 |
except Exception as e:
|