Guest User

Untitled

a guest
Jun 19th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. base_model = InceptionV3(weights=None,include_top=False, input_shape=(256,256,3))
  2. x = base_model.output
  3. x = GlobalAveragePooling2D()(x)
  4. x = Dense(64, activation='relu')(x)
  5. predictions = Dense(2, activation='softmax')(x)
Add Comment
Please, Sign In to add comment