Minimal interface
Browse files- src/main.py +8 -0
src/main.py
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import streamlit as st
|
| 2 |
+
import pandas as pd
|
| 3 |
+
|
| 4 |
+
st.title('Exponential Smoothing on ILINetDataset')
|
| 5 |
+
|
| 6 |
+
if st.button(label='Get result chart'):
|
| 7 |
+
# st.pyplot() # figura contenente il grafico
|
| 8 |
+
st.metric(label='MAPE', value=0) # mape
|