vishnoi246
Results
2
issues of
vishnoi246
Fix: Update custom layer example to use self.add_weight() Problem: The previous MyDense layer created weights with tf.Variable in __init__. These weights were not automatically registered, so layer.variables and layer.trainable_variables were...
This PR fixes a small issue in the MyDense layer example in intro_to_modules.ipynb. The original code used a plain Python list as input: simple_layer([[2.0, 2.0, 2.0]]) This caused an error...