jiawenchim commited on
Commit
93a4dd9
1 Parent(s): f9b1f49

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -13,8 +13,8 @@ def predict_energy(f1,f2,f3,f4,f5,f6,f7,f8,f9,f10,f11,f12,f13):
13
  # if f0 is not None:
14
  # if f= == "Custom LSTM":
15
 
16
- weather_input_array = [f1,f2,f3,f4,f5,f6]
17
- history_input_array =[f7,f8,f9,f10,f11,f12,f13]
18
 
19
  weather_input_array = np.array(weather_input).reshape(1,-1)
20
  history_input_array = np.array(history_input).reshape(1,-1)
 
13
  # if f0 is not None:
14
  # if f= == "Custom LSTM":
15
 
16
+ weather_input = [f1,f2,f3,f4,f5,f6]
17
+ history_input =[f7,f8,f9,f10,f11,f12,f13]
18
 
19
  weather_input_array = np.array(weather_input).reshape(1,-1)
20
  history_input_array = np.array(history_input).reshape(1,-1)