summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--other_exp/gcn_classification.py5
1 files changed, 0 insertions, 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__)