mirror of
https://github.com/newnius/YAO-optimizer.git
synced 2025-06-06 22:51:55 +00:00
update
This commit is contained in:
parent
6f26c20c43
commit
580c4716b9
@ -225,7 +225,7 @@
|
||||
<component name="PropertiesComponent">
|
||||
<property name="WebServerToolWindowFactoryState" value="false" />
|
||||
<property name="aspect.path.notification.shown" value="true" />
|
||||
<property name="com.android.tools.idea.instantapp.provision.ProvisionBeforeRunTaskProvider.myTimeStamp" value="1588388161041" />
|
||||
<property name="com.android.tools.idea.instantapp.provision.ProvisionBeforeRunTaskProvider.myTimeStamp" value="1588388199075" />
|
||||
<property name="go.gopath.indexing.explicitly.defined" value="true" />
|
||||
<property name="nodejs_interpreter_path.stuck_in_default_project" value="undefined stuck path" />
|
||||
<property name="nodejs_npm_path_reset_for_default_project" value="true" />
|
||||
|
2
train.py
2
train.py
@ -114,7 +114,7 @@ def experiment(repeats, series, seed):
|
||||
lstm_model.predict(train_reshaped, batch_size=batch_size)
|
||||
# forecast test dataset
|
||||
test_reshaped = test_scaled[:, 0:-1]
|
||||
test_reshaped = test_reshaped.reshape(len(test_reshaped), 1, 1)
|
||||
test_reshaped = test_reshaped.reshape(len(test_reshaped), 1, lag2)
|
||||
output = lstm_model.predict(test_reshaped, batch_size=batch_size)
|
||||
predictions = list()
|
||||
for i in range(len(output)):
|
||||
|
Loading…
Reference in New Issue
Block a user