From 65ccf902c890f09073147aa718897447f5e5ab5b Mon Sep 17 00:00:00 2001 From: David Luevano Alvarado <55825613+luevano@users.noreply.github.com> Date: Fri, 20 Nov 2020 22:52:36 -0700 Subject: Just spacing changes --- other_exp/gcn_classification.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/other_exp/gcn_classification.py b/other_exp/gcn_classification.py index dc15cf4fd..dad174dd7 100644 --- a/other_exp/gcn_classification.py +++ b/other_exp/gcn_classification.py @@ -2,12 +2,10 @@ import tensorflow as tf from tensorflow.compat.v1 import placeholder from tensorflow.compat.v1.layers import dense - # Disable eager execution (evaluate tf operations instantly instead of having # to build a graph) so placeholder() can work. tf.compat.v1.disable_eager_execution() - n_nodes = 50 n_features = 50 n_labels = 10 @@ -44,6 +42,3 @@ Y_pred = tf.reshape(Y_pred, [-1]) loss = tf.reduce_mean(Y_truth*tf.math.log(Y_pred + 1.0 ** -5)) print(loss) - - -print(tf.__version__) -- cgit v1.2.3