.
Some checks failed
s434784-training/pipeline/head There was a failure building this commit

This commit is contained in:
Maciej Sobkowiak 2021-05-16 16:55:33 +02:00
parent eb520d69b7
commit 5687a9cc98

View File

@ -64,8 +64,8 @@ model.compile(
# Train model
history = model.fit(
X_train, y_train,
batch_size=sys.argv[0],
epochs=sys.argv[1],
batch_size=int(sys.argv[0]),
epochs=int(sys.argv[1]),
validation_split=0.2)
test_results = {}