Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. conv_base = VGG16(include_top = False,
  2. weights = 'imagenet')
  3. conv_base.trainable = False
  4. with tf.variable_scope('classification_head', reuse=tf.AUTO_REUSE):
  5. x = Flatten()(conv_base.layers[-1])
  6. x = Dense()(x)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement