Spaces:
Runtime error
Runtime error
zhang qiao commited on
Commit ·
cdca9fc
1
Parent(s): ebf4fd3
Upload folder using huggingface_hub
Browse files- __pycache__/demo.cpython-310.pyc +0 -0
- data/multivariate/blow_mold_future.csv +4 -3
- demo.py +2 -0
- gr_app/__pycache__/gr_app.cpython-310.pyc +0 -0
- gr_app/components/__pycache__/auto_arima.cpython-310.pyc +0 -0
- gr_app/components/auto_arima.py +1 -1
- gr_app/gr_app.py +1 -1
- gr_component_test.ipynb +0 -0
- src/idsc/__pycache__/IDSC.cpython-310.pyc +0 -0
- temp/20231218180408.csv +5 -0
- temp/20231218181212.csv +5 -0
- temp/20231218181248.csv +5 -0
__pycache__/demo.cpython-310.pyc
CHANGED
|
Binary files a/__pycache__/demo.cpython-310.pyc and b/__pycache__/demo.cpython-310.pyc differ
|
|
|
data/multivariate/blow_mold_future.csv
CHANGED
|
@@ -1,4 +1,5 @@
|
|
| 1 |
datetime,gas_regm,global_price_of_rubber
|
| 2 |
-
2023-01-31,3.7405,
|
| 3 |
-
2023-02-28,3.7726,
|
| 4 |
-
2023-03-31,3.8121,
|
|
|
|
|
|
| 1 |
datetime,gas_regm,global_price_of_rubber
|
| 2 |
+
2023-01-31,3.7405,76.8403
|
| 3 |
+
2023-02-28,3.7726,82.6015
|
| 4 |
+
2023-03-31,3.8121,78.0766
|
| 5 |
+
2023-04-30,3.8585,80.8620
|
demo.py
CHANGED
|
@@ -296,4 +296,6 @@ with demo:
|
|
| 296 |
[plot__chart_view]
|
| 297 |
)
|
| 298 |
|
|
|
|
|
|
|
| 299 |
demo.launch()
|
|
|
|
| 296 |
[plot__chart_view]
|
| 297 |
)
|
| 298 |
|
| 299 |
+
gr.Markdown('Version: 0.0.1 | Updated: 2023-Dec-18')
|
| 300 |
+
|
| 301 |
demo.launch()
|
gr_app/__pycache__/gr_app.cpython-310.pyc
CHANGED
|
Binary files a/gr_app/__pycache__/gr_app.cpython-310.pyc and b/gr_app/__pycache__/gr_app.cpython-310.pyc differ
|
|
|
gr_app/components/__pycache__/auto_arima.cpython-310.pyc
CHANGED
|
Binary files a/gr_app/components/__pycache__/auto_arima.cpython-310.pyc and b/gr_app/components/__pycache__/auto_arima.cpython-310.pyc differ
|
|
|
gr_app/components/auto_arima.py
CHANGED
|
@@ -37,7 +37,7 @@ class AutoARIMAForecaster():
|
|
| 37 |
D=D,
|
| 38 |
seasonal=seasonal,
|
| 39 |
random=True,
|
| 40 |
-
n_fits=
|
| 41 |
error_action='ignore'
|
| 42 |
)
|
| 43 |
|
|
|
|
| 37 |
D=D,
|
| 38 |
seasonal=seasonal,
|
| 39 |
random=True,
|
| 40 |
+
n_fits=10,
|
| 41 |
error_action='ignore'
|
| 42 |
)
|
| 43 |
|
gr_app/gr_app.py
CHANGED
|
@@ -38,7 +38,7 @@ class GradioApp():
|
|
| 38 |
self.future_demo_data = 'data/multivariate/blow_mold_future.csv'
|
| 39 |
|
| 40 |
self.data: pd.DataFrame = None
|
| 41 |
-
self.n_predict =
|
| 42 |
self.window_length = 2
|
| 43 |
self.target_column = 'price'
|
| 44 |
self.exog_columns = []
|
|
|
|
| 38 |
self.future_demo_data = 'data/multivariate/blow_mold_future.csv'
|
| 39 |
|
| 40 |
self.data: pd.DataFrame = None
|
| 41 |
+
self.n_predict = 4
|
| 42 |
self.window_length = 2
|
| 43 |
self.target_column = 'price'
|
| 44 |
self.exog_columns = []
|
gr_component_test.ipynb
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|
src/idsc/__pycache__/IDSC.cpython-310.pyc
CHANGED
|
Binary files a/src/idsc/__pycache__/IDSC.cpython-310.pyc and b/src/idsc/__pycache__/IDSC.cpython-310.pyc differ
|
|
|
temp/20231218180408.csv
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
,price
|
| 2 |
+
2023-01-31,73.0
|
| 3 |
+
2023-02-28,78.0
|
| 4 |
+
2023-03-31,79.0
|
| 5 |
+
2023-04-30,80.0
|
temp/20231218181212.csv
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
,price
|
| 2 |
+
2023-01-31,93.0
|
| 3 |
+
2023-02-28,94.0
|
| 4 |
+
2023-03-31,96.0
|
| 5 |
+
2023-04-30,98.0
|
temp/20231218181248.csv
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
,price
|
| 2 |
+
2023-01-31,89.0
|
| 3 |
+
2023-02-28,88.0
|
| 4 |
+
2023-03-31,88.0
|
| 5 |
+
2023-04-30,87.0
|