Explorar el Código

add output info

Jérôme BUISINE hace 3 años
padre
commit
4ebed7df49
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  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))