Skip to content

Commit

Permalink
Increase global multiplier max
Browse files Browse the repository at this point in the history
  • Loading branch information
jvivian committed Jun 18, 2024
1 parent 8060d72 commit e46d476
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dfmdash/streamlit/pages/0_Dynamic_Factor_Model.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def create_anndata(self) -> "DataHandler":


def additional_params():
global_multiplier = st.sidebar.slider("Global Multiplier", min_value=0, max_value=4, value=0)
global_multiplier = st.sidebar.slider("Global Multiplier", min_value=0, max_value=15, value=2)
out_dir = st.sidebar.text_input("Output Directory", value=None)
if not out_dir:
st.warning("Specify output directory (in sidebar) to continue")
Expand Down

0 comments on commit e46d476

Please sign in to comment.