From 1bf75107dda00665bb6fcf5c820446b11460befd Mon Sep 17 00:00:00 2001 From: Yann SOULLARD <yann.soullard@univ-rouen.fr> Date: Wed, 10 Jan 2018 09:21:40 +0100 Subject: [PATCH] example ok --- example.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example.py b/example.py index aa35983..cc7ca6e 100644 --- a/example.py +++ b/example.py @@ -80,4 +80,4 @@ if __name__ == '__main__': # predict label sequences pred = network.predict([x_test_pad, x_test_len], batch_size=batch_size, max_value=padding_value) for i in range(10): # print the 10 first predictions - print("Prediction :", pred[i], " -- Label : ", y_test[i]) #Â [j for j in pred[i] if j!=-1] \ No newline at end of file + print("Prediction :", [j for j in pred[i] if j!=-1], " -- Label : ", y_test[i]) #Â \ No newline at end of file -- GitLab