Spaces:
GIZ
/
Running on CPU Upgrade

prashant commited on
Commit
dfb1035
1 Parent(s): 4a866e0

adding sdg runtime metric

Browse files
Files changed (1) hide show
  1. appStore/sdg_analysis.py +18 -1
appStore/sdg_analysis.py CHANGED
@@ -81,7 +81,24 @@ def app():
81
  which is an easy-to-use computational less expensive \
82
  model leveraging combination of TFIDF and Graph networks.
83
  """)
84
- st.markdown("")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
85
 
86
 
87
  ### Main app code ###
 
81
  which is an easy-to-use computational less expensive \
82
  model leveraging combination of TFIDF and Graph networks.
83
  """)
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(4)
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
 
103
 
104
  ### Main app code ###