Last active
December 21, 2020 18:20
-
-
Save daanklijn/a4e0176c2667ff34fdcc87281eed9a80 to your computer and use it in GitHub Desktop.
Basic net
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
input = Input(shape=1) | |
output = Dense(100, activation="softmax", kernel_initializer='zeros')(input) | |
model = Model(inputs=input, outputs=output) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment