Skip to content

Commit

Permalink
Update streamlit_app.py
Browse files Browse the repository at this point in the history
  • Loading branch information
soodoku authored Oct 23, 2023
1 parent 2e9141d commit 1e83e0b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions streamlit/streamlit_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# Define your sidebar options
sidebar_options = {
'Append Electoral Roll Data to First Name': in_rolls_fn_gender,
'Predict': predict_fn_gender
'Predict Using the Model': predict_fn_gender
}

def download_file(df):
Expand Down Expand Up @@ -37,7 +37,7 @@ def app():
df = pd.read_csv(uploaded_file)
st.write("Data loaded successfully!")

if selected_function == "Append Electoral Roll to First Name":
if selected_function == "Append Electoral Roll Data to First Name":
fname_col = st.selectbox("Select column with first name", df.columns)
state = st.selectbox("Select a state", ["andaman", "andhra", "arunachal", "assam",
"bihar", "chandigarh", "dadra", "daman", "delhi",
Expand Down

0 comments on commit 1e83e0b

Please sign in to comment.