From 5dc0c300e84dddf4a8d262668b100c89179010e4 Mon Sep 17 00:00:00 2001 From: Smiril Date: Mon, 11 Jul 2022 11:58:04 +0200 Subject: [PATCH] Update m1_tf_test.py --- m1_tf_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/m1_tf_test.py b/m1_tf_test.py index 306a038..063ef54 100644 --- a/m1_tf_test.py +++ b/m1_tf_test.py @@ -19,7 +19,7 @@ class ComputeSum(Layer): def __init__(self, input_dim): super(ComputeSum, self).__init__() - # Create a non-trainable weight. + # Create a trainable weight. self.total = tf.Variable(initial_value=tf.zeros((input_dim,)), trainable=True)