While learning tensorflow, I am confused with code like:
x = tf.keras.layers.Dropout(0.2)(x)
So I try to print the x:
print('x before', x)
x before Tensor("global_average_pooling2d_1/Mean:0", shape=(None, 1280), dtype=float32)
x = tf.keras.layers.Dropout(0.2)(x)
print('x after', x)
x after Tensor("dropout/cond/Identity:0", shape=(None, 1280), dtype=float32)
My understanding is: 0.2 is the parameter to the function, but what is this (x) syntax?
Any reference would be appreicated