Guest User

Untitled

a guest
Dec 16th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. mobile = keras.applications.mobilenet.MobileNet()
  2. mobile.summary()
  3. x = mobile.layers[-6].output
  4. x = Dropout(0.25)(x)
  5. predictions = Dense(7, activation='softmax')(x)
  6. model = Model(inputs=mobile.input, outputs=predictions)
Add Comment
Please, Sign In to add comment