Thursday, May 20, 2021


SyntaxError: positional argument follows keyword argument


Wrong:
model.add(tf.keras.layers.Dense(units = 7*7*256, use_bias = False, input_shape(100,)))



Right:
model.add(tf.keras.layers.Dense(units = 7*7*256, use_bias = False, input_shape=(100,)))

No comments:

Post a Comment

kubernetes controllers and workloads

In Kubernetes, Workloads are the applications you run on the cluster, while Controllers are the background control loops that watch the st...