Parcourir la source

add output info

Jérôme BUISINE il y a 3 ans
Parent
commit
4ebed7df49
1 fichiers modifiés avec 1 ajouts et 0 suppressions
  1. 1 0
      train_model.py

+ 1 - 0
train_model.py

@@ -281,6 +281,7 @@ def main():
     model_output_path = os.path.join(cfg.output_models, p_output + '.h5')
     model.save(model_output_path)
 
+    print('Input prediction shape', X_train.shape)
     # Get results obtained from model
     y_train_prediction = model.predict(list(X_train))
     y_val_prediction = model.predict(list(X_val))