You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In googLeNet.py line 49: linear = Dense(units=1000, activation="softmax", `kernel_regularizer=l2(0.01))(keras.layers.core.Flatten(drop1))
while it should be: linear = Dense(units=1000, activation="softmax", kernel_regularizer=l2(0.01))(keras.layers.core.Flatten()(drop1))
The text was updated successfully, but these errors were encountered:
In googLeNet.py line 49:
linear = Dense(units=1000, activation="softmax", `kernel_regularizer=l2(0.01))(keras.layers.core.Flatten(drop1))
while it should be:
linear = Dense(units=1000, activation="softmax", kernel_regularizer=l2(0.01))(keras.layers.core.Flatten()(drop1))
The text was updated successfully, but these errors were encountered: