Skip to content

Commit d2ab963

Browse files
authored
fix TF inputs
1 parent b7077b6 commit d2ab963

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

talos/autom8/automodel.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def _create_input_model(self, x_train, y_train, x_val, y_val, params):
120120
epochs=params['epochs'],
121121
verbose=0,
122122
callbacks=[self.callback(self.experiment_name, params)],
123-
validation_data=[x_val, y_val])
123+
validation_data=(x_val, y_val))
124124

125125
# pass the output to Talos
126126
return out, model

0 commit comments

Comments
 (0)