Spaces:
Sleeping
Sleeping
- .idea/workspace.xml +3 -1
- app.py +1 -1
.idea/workspace.xml
CHANGED
@@ -4,7 +4,9 @@
|
|
4 |
<option name="autoReloadType" value="SELECTIVE" />
|
5 |
</component>
|
6 |
<component name="ChangeListManager">
|
7 |
-
<list default="true" id="7eeb9ad6-e30c-4a49-b03a-a9b6a48f7c76" name="Changes" comment=""
|
|
|
|
|
8 |
<option name="SHOW_DIALOG" value="false" />
|
9 |
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
10 |
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
|
|
4 |
<option name="autoReloadType" value="SELECTIVE" />
|
5 |
</component>
|
6 |
<component name="ChangeListManager">
|
7 |
+
<list default="true" id="7eeb9ad6-e30c-4a49-b03a-a9b6a48f7c76" name="Changes" comment="">
|
8 |
+
<change beforePath="$PROJECT_DIR$/app.py" beforeDir="false" afterPath="$PROJECT_DIR$/app.py" afterDir="false" />
|
9 |
+
</list>
|
10 |
<option name="SHOW_DIALOG" value="false" />
|
11 |
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
12 |
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
app.py
CHANGED
@@ -34,7 +34,7 @@ def predict_future(model, initial_data, time_step, num_months):
|
|
34 |
predictions.append(next_prediction[0])
|
35 |
current_data = np.append(current_data[1:], next_prediction, axis=0)
|
36 |
|
37 |
-
return np.array(predictions)
|
38 |
|
39 |
def generate_plots(file):
|
40 |
seed = 65
|
|
|
34 |
predictions.append(next_prediction[0])
|
35 |
current_data = np.append(current_data[1:], next_prediction, axis=0)
|
36 |
|
37 |
+
return np.array(predictions)
|
38 |
|
39 |
def generate_plots(file):
|
40 |
seed = 65
|