From 6937f7f169a01b5c1cb44a3f24294bde77bdaf8c Mon Sep 17 00:00:00 2001 From: Luc Giffon <luc.giffon@lis-lab.fr> Date: Thu, 22 Nov 2018 16:02:58 +0100 Subject: [PATCH] fix useles space --- skluc/main/tensorflow_/utils.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/skluc/main/tensorflow_/utils.py b/skluc/main/tensorflow_/utils.py index c184d27..9dffd68 100644 --- a/skluc/main/tensorflow_/utils.py +++ b/skluc/main/tensorflow_/utils.py @@ -248,8 +248,6 @@ def replace_nan(tensor): return tf.where(tf.is_nan(tensor), tf.zeros_like(tensor), tensor) - - if __name__ == "__main__": X_train = np.arange(12) Y_train = np.array(["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p"]) -- GitLab