Spaces:
GIZ
/
Running on CPU Upgrade

prashant commited on
Commit
d5ef393
1 Parent(s): 4d353b8

adjusting alignment

Browse files
Files changed (1) hide show
  1. appStore/sdg_analysis.py +9 -5
appStore/sdg_analysis.py CHANGED
@@ -84,19 +84,23 @@ def app():
84
  st.write("")
85
  st.write("")
86
  st.markdown("Some runtime metrics tested with cpu: Intel(R) Xeon(R) CPU @ 2.20GHz, memory: 13GB")
87
- col1,col2,col3,col4 = st.columns([1,1,2,2])
88
  with col1:
89
  st.caption("Loading Time Classifier")
90
- st.write("12 sec")
 
91
  with col2:
92
  st.caption("OCR File processing")
93
- st.write("50 sec")
 
94
  with col3:
95
  st.caption("SDG Classification of 200 paragraphs")
96
- st.write("120 sec")
 
97
  with col4:
98
  st.caption("Keyword extraction for 200 paragraphs")
99
- st.write("3 sec")
 
100
 
101
 
102
 
 
84
  st.write("")
85
  st.write("")
86
  st.markdown("Some runtime metrics tested with cpu: Intel(R) Xeon(R) CPU @ 2.20GHz, memory: 13GB")
87
+ col1,col2,col3,col4 = st.columns([2,2,3,3])
88
  with col1:
89
  st.caption("Loading Time Classifier")
90
+ st.markdown('<div style="text-align: center;">12 sec</div>', unsafe_allow_html=True)
91
+ # st.write("12 sec")
92
  with col2:
93
  st.caption("OCR File processing")
94
+ st.markdown('<div style="text-align: center;">50 sec</div>', unsafe_allow_html=True)
95
+ # st.write("50 sec")
96
  with col3:
97
  st.caption("SDG Classification of 200 paragraphs")
98
+ st.markdown('<div style="text-align: center;">120 sec</div>', unsafe_allow_html=True)
99
+ # st.write("120 sec")
100
  with col4:
101
  st.caption("Keyword extraction for 200 paragraphs")
102
+ st.markdown('<div style="text-align: center;">3 sec</div>', unsafe_allow_html=True)
103
+ # st.write("3 sec")
104
 
105
 
106