Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -210,6 +210,9 @@ def load_default():
|
|
210 |
|
211 |
def transfer_learning_forecasting():
|
212 |
st.title("Transfer Learning Forecasting")
|
|
|
|
|
|
|
213 |
|
214 |
nhits_models, timesnet_models, lstm_models, tft_models = load_all_models()
|
215 |
|
@@ -301,7 +304,11 @@ def transfer_learning_forecasting():
|
|
301 |
|
302 |
def dynamic_forecasting():
|
303 |
st.title("Dynamic Forecasting")
|
304 |
-
st.
|
|
|
|
|
|
|
|
|
305 |
|
306 |
with st.sidebar.expander("Upload and Configure Dataset", expanded=True):
|
307 |
uploaded_file = st.file_uploader("Upload your time series data (CSV)", type=["csv"])
|
@@ -347,6 +354,9 @@ def timegpt_fcst():
|
|
347 |
|
348 |
|
349 |
st.title("TimeGPT Forecasting")
|
|
|
|
|
|
|
350 |
with st.sidebar.expander("Upload and Configure Dataset", expanded=True):
|
351 |
uploaded_file = st.file_uploader("Upload your time series data (CSV)", type=["csv"])
|
352 |
if uploaded_file:
|
@@ -405,7 +415,10 @@ def timegpt_anom():
|
|
405 |
)
|
406 |
|
407 |
|
408 |
-
st.title("TimeGPT
|
|
|
|
|
|
|
409 |
with st.sidebar.expander("Upload and Configure Dataset", expanded=True):
|
410 |
uploaded_file = st.file_uploader("Upload your time series data (CSV)", type=["csv"])
|
411 |
if uploaded_file:
|
|
|
210 |
|
211 |
def transfer_learning_forecasting():
|
212 |
st.title("Transfer Learning Forecasting")
|
213 |
+
st.markdown("""
|
214 |
+
Instant time series forecasting and visualization by using various pre-trained deep neural network-based model trained on M4 data.
|
215 |
+
""")
|
216 |
|
217 |
nhits_models, timesnet_models, lstm_models, tft_models = load_all_models()
|
218 |
|
|
|
304 |
|
305 |
def dynamic_forecasting():
|
306 |
st.title("Dynamic Forecasting")
|
307 |
+
st.markdown("""
|
308 |
+
Train time series forecasting model from scratch and provide forecasts/visualization by using various deep neural network-based model trained on user data.
|
309 |
+
|
310 |
+
Forecasting speed depends on CPU/GPU availabilty.
|
311 |
+
""")
|
312 |
|
313 |
with st.sidebar.expander("Upload and Configure Dataset", expanded=True):
|
314 |
uploaded_file = st.file_uploader("Upload your time series data (CSV)", type=["csv"])
|
|
|
354 |
|
355 |
|
356 |
st.title("TimeGPT Forecasting")
|
357 |
+
st.markdown("""
|
358 |
+
Instant time series forecasting and visualization by using the TimeGPT API provided by Nixtla.
|
359 |
+
""")
|
360 |
with st.sidebar.expander("Upload and Configure Dataset", expanded=True):
|
361 |
uploaded_file = st.file_uploader("Upload your time series data (CSV)", type=["csv"])
|
362 |
if uploaded_file:
|
|
|
415 |
)
|
416 |
|
417 |
|
418 |
+
st.title("TimeGPT Anomaly Detection")
|
419 |
+
st.markdown("""
|
420 |
+
Instant time series anomaly detection and visualization by using the TimeGPT API provided by Nixtla.
|
421 |
+
""")
|
422 |
with st.sidebar.expander("Upload and Configure Dataset", expanded=True):
|
423 |
uploaded_file = st.file_uploader("Upload your time series data (CSV)", type=["csv"])
|
424 |
if uploaded_file:
|