ldhldh commited on
Commit
516f72b
·
1 Parent(s): 297634e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -294,12 +294,12 @@ if len(sample_data.get("gpus", {}))!=0:
294
  chart_generator = GenerateChart(sample_data.get("gpus", {}), bubble_spacing=0.1, n_bins=5)
295
 
296
 
297
- st.title('Inference call')
298
- timestamp_list_date_str = []
299
- for d in timestamp_list_date:
300
- timestamp_list_date_str.append(strftime('%Y-%m-%d', localtime( d )))
301
- call_data = pd.DataFrame(timestamp_inference_data, columns = ["inference call"], index = timestamp_list_date_str)
302
- st.bar_chart(call_data)
303
 
304
 
305
 
 
294
  chart_generator = GenerateChart(sample_data.get("gpus", {}), bubble_spacing=0.1, n_bins=5)
295
 
296
 
297
+ #st.title('Inference call')
298
+ #timestamp_list_date_str = []
299
+ #for d in timestamp_list_date:
300
+ # timestamp_list_date_str.append(strftime('%Y-%m-%d', localtime( d )))
301
+ #call_data = pd.DataFrame(timestamp_inference_data, columns = ["inference call"], index = timestamp_list_date_str)
302
+ #st.bar_chart(call_data)
303
 
304
 
305