We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a727f41 commit 2eddf2aCopy full SHA for 2eddf2a
gui.py
@@ -48,6 +48,11 @@ def convert_tuple_to_list(data, keys):
48
config_keys_with_tuples = ['ngram_range']
49
config = convert_list_to_tuple(config, config_keys_with_tuples)
50
51
+# Streamlit wide layout
52
+st.set_page_config(
53
+ layout="wide"
54
+)
55
+
56
# Initialize session state
57
if 'config_data' not in st.session_state:
58
st.session_state.config_data = config
0 commit comments