Nuno-Tome commited on
Commit
6b42839
·
1 Parent(s): d1125ed

no message

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -16,7 +16,8 @@ MAX_N_LABELS = 5
16
  SPLIT_TO_CLASSIFY = 'pasta'
17
 
18
  COLS = st.columns([0.75, 0.25])
19
- SCROLLABLE_TEXT = COLS[1].text_area("Conteúdo da segunda coluna", height=500)
 
20
 
21
 
22
 
@@ -54,6 +55,7 @@ def classify_full_dataset(shosen_dataset_name, chosen_model_name):
54
  #with SCROLLABLE_TEXT:
55
  #Image teste load
56
  image_object = dataset['pasta'][0]["image"]
 
57
  SCROLLABLE_TEXT.image(image_object, caption="Uploaded Image", width=300)
58
  #st.write("### FLAG 3")
59
 
 
16
  SPLIT_TO_CLASSIFY = 'pasta'
17
 
18
  COLS = st.columns([0.75, 0.25])
19
+ #SCROLLABLE_TEXT = COLS[1].text_area("Conteúdo da segunda coluna", height=500)
20
+ SCROLLABLE_TEXT = COLS[1].container(height=500)
21
 
22
 
23
 
 
55
  #with SCROLLABLE_TEXT:
56
  #Image teste load
57
  image_object = dataset['pasta'][0]["image"]
58
+
59
  SCROLLABLE_TEXT.image(image_object, caption="Uploaded Image", width=300)
60
  #st.write("### FLAG 3")
61