Spaces:
Sleeping
Sleeping
Commit
·
21cc39d
1
Parent(s):
8155aa5
Update app.py
Browse files
app.py
CHANGED
@@ -13,12 +13,13 @@ df = df.rename(columns={"Date": "ds", "Price": "y"})
|
|
13 |
df.fillna(method='ffill', inplace=True)
|
14 |
df.dropna(inplace=True)
|
15 |
|
16 |
-
|
17 |
-
|
18 |
-
|
|
|
19 |
|
20 |
-
|
21 |
-
|
22 |
|
23 |
m = CustomNeuralProphet(
|
24 |
n_forecasts=30,
|
@@ -37,7 +38,7 @@ m = CustomNeuralProphet(
|
|
37 |
learning_rate=0.03,
|
38 |
)
|
39 |
|
40 |
-
m.fit(df, freq='D')
|
41 |
|
42 |
future = m.make_future_dataframe(df, periods=30, n_historic_predictions=True)
|
43 |
forecast = m.predict(future)
|
@@ -53,7 +54,7 @@ def predict_vn_index(option=None):
|
|
53 |
|
54 |
if __name__ == "__main__":
|
55 |
dropdown = gr.inputs.Dropdown(["VNIndex"], label="Choose an option", default="VNIndex")
|
56 |
-
image_output = gr.outputs.Image(type="
|
57 |
disclaimer_output = gr.outputs.Textbox(label="Disclaimer")
|
58 |
interface = gr.Interface(fn=predict_vn_index, inputs=dropdown, outputs=[image_output, disclaimer_output], title="Dự báo VN Index 30 ngày tới")
|
59 |
interface.launch()
|
|
|
13 |
df.fillna(method='ffill', inplace=True)
|
14 |
df.dropna(inplace=True)
|
15 |
|
16 |
+
class CustomNeuralProphet(NeuralProphet):
|
17 |
+
def lr_scheduler_step(self, epoch, batch_idx, optimizer):
|
18 |
+
# Get the OneCycleLR scheduler
|
19 |
+
scheduler = self.optimizers[0].scheduler
|
20 |
|
21 |
+
# Call the `step` method on the scheduler
|
22 |
+
scheduler.step()
|
23 |
|
24 |
m = CustomNeuralProphet(
|
25 |
n_forecasts=30,
|
|
|
38 |
learning_rate=0.03,
|
39 |
)
|
40 |
|
41 |
+
m.fit(df, freq='D', epochs=10, validate_each_epoch=True, valid_p=0.2)
|
42 |
|
43 |
future = m.make_future_dataframe(df, periods=30, n_historic_predictions=True)
|
44 |
forecast = m.predict(future)
|
|
|
54 |
|
55 |
if __name__ == "__main__":
|
56 |
dropdown = gr.inputs.Dropdown(["VNIndex"], label="Choose an option", default="VNIndex")
|
57 |
+
image_output = gr.outputs.Image(type="file", label="Forecast Plot")
|
58 |
disclaimer_output = gr.outputs.Textbox(label="Disclaimer")
|
59 |
interface = gr.Interface(fn=predict_vn_index, inputs=dropdown, outputs=[image_output, disclaimer_output], title="Dự báo VN Index 30 ngày tới")
|
60 |
interface.launch()
|