DrishtiSharma commited on
Commit
3627dc3
·
verified ·
1 Parent(s): ff0a80b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -37,7 +37,7 @@ model_choice = st.radio("Select LLM", ["GPT-4o", "llama-3.3-70b"], index=0, hori
37
  llm = initialize_llm(model_choice)
38
 
39
  def load_dataset_into_session():
40
- input_option = st.radio("Select Dataset Input:", ["Use Hugging Face Dataset", "Upload CSV File"])
41
  if input_option == "Use Hugging Face Dataset":
42
  dataset_name = st.text_input("Enter Hugging Face Dataset Name:", value="HUPD/hupd")
43
  if st.button("Load Dataset"):
 
37
  llm = initialize_llm(model_choice)
38
 
39
  def load_dataset_into_session():
40
+ input_option = st.radio("Select Dataset Input:", ["Use Hugging Face Dataset", "Upload CSV File"], index=0, horizontal=True)
41
  if input_option == "Use Hugging Face Dataset":
42
  dataset_name = st.text_input("Enter Hugging Face Dataset Name:", value="HUPD/hupd")
43
  if st.button("Load Dataset"):