We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1be99a9 commit 890aac6Copy full SHA for 890aac6
predict.py
@@ -67,6 +67,7 @@ def predict_unseen_data():
67
y_test = np.argmax(y_test, axis=1)
68
correct_predictions = sum(all_predictions == y_test)
69
logging.critical('The accuracy is: {}'.format(correct_predictions / float(len(y_test))))
70
+ logging.critical('The prediction is complete')
71
72
if __name__ == '__main__':
73
# python3 predict.py ./trained_model_1478649295/ ./data/small_samples.json
0 commit comments