Skip to content

wrong way in adding flatten layer #3

Description

@bacterous

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))

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions