Skip to content

Commit 2eddf2a

Browse files
Update gui.py
- UI wide layout by default (to edit go to line 51) ``` # Streamlit wide layout st.set_page_config( layout="wide" ) ```
1 parent a727f41 commit 2eddf2a

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

gui.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,11 @@ def convert_tuple_to_list(data, keys):
4848
config_keys_with_tuples = ['ngram_range']
4949
config = convert_list_to_tuple(config, config_keys_with_tuples)
5050

51+
# Streamlit wide layout
52+
st.set_page_config(
53+
layout="wide"
54+
)
55+
5156
# Initialize session state
5257
if 'config_data' not in st.session_state:
5358
st.session_state.config_data = config

0 commit comments

Comments
 (0)