convert parameter to int
All checks were successful
s444417-training/pipeline/head This commit looks good
All checks were successful
s444417-training/pipeline/head This commit looks good
This commit is contained in:
parent
41d0a23830
commit
3bf9949b17
@ -59,7 +59,7 @@ linear_model.compile(loss = tf.losses.MeanSquaredError(),
|
||||
optimizer = tf.optimizers.Adam(1))
|
||||
|
||||
# train model
|
||||
history = linear_model.fit(house_price_features, house_price_labels, epochs=numberOfEpoch, )
|
||||
history = linear_model.fit(house_price_features, house_price_labels, epochs=int(numberOfEpoch), )
|
||||
#callbacks=[cp_callback])
|
||||
# print(history)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user