Nuno-Tome commited on
Commit
1341b34
·
1 Parent(s): 78895ec

no message

Browse files
Files changed (1) hide show
  1. app.py +5 -3
app.py CHANGED
@@ -20,7 +20,7 @@ SPLIT_TO_CLASSIFY = 'pasta'
20
  # CONTAINER_BODY = st.container()
21
  # CONTAINER_FULL = st.container()
22
  # CONTAINER_LOOP = st.container()
23
- COL1, COL2
24
  CONTAINER_TOP, CONTAINER_BODY, CONTAINER_FULL, CONTAINER_LOOP
25
 
26
 
@@ -84,13 +84,15 @@ def classify_full_dataset(shosen_dataset_name, chosen_model_name):
84
 
85
 
86
  def make_template():
 
 
87
  CONTAINER_FULL = st.container()
88
  with CONTAINER_FULL:
89
  CONTAINER_TOP = st.container()
90
  CONTAINER_BODY = st.container()
91
  with CONTAINER_BODY:
92
- COL1, COL2 = st.columns([3, 1])
93
- with COL2:
94
  CONTAINER_LOOP = st.container()
95
 
96
 
 
20
  # CONTAINER_BODY = st.container()
21
  # CONTAINER_FULL = st.container()
22
  # CONTAINER_LOOP = st.container()
23
+ COL1, COL2, COLS
24
  CONTAINER_TOP, CONTAINER_BODY, CONTAINER_FULL, CONTAINER_LOOP
25
 
26
 
 
84
 
85
 
86
  def make_template():
87
+ COLS = st.columns([3, 1])
88
+
89
  CONTAINER_FULL = st.container()
90
  with CONTAINER_FULL:
91
  CONTAINER_TOP = st.container()
92
  CONTAINER_BODY = st.container()
93
  with CONTAINER_BODY:
94
+ #COL1, COL2 = st.columns([3, 1])
95
+ with COLS[1]:
96
  CONTAINER_LOOP = st.container()
97
 
98