Guest User

Untitled

a guest
Nov 17th, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. class MyLayer(tf.keras.layers.Layer):
  2. def __init__(self):
  3. super().__init__()
  4. def build(self, input_shape):
  5. pass
  6. def call(self, input):
  7. pass
  8. def compute_output_shape(self, input_shape):
  9. pass
Add Comment
Please, Sign In to add comment