Skip to content

Commit

Permalink
fix: add the missing dot
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexYangLi committed Feb 8, 2020
1 parent 2c58213 commit cb954ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/fancy_nlp/layers/test_attention.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@

class TestAttention:
def test_multihead_attention(self):
input_embed = tf.keras.layersInput(shape=(3, 300))
input_embed = tf.keras.layers.Input(shape=(3, 300))
input_encode = MultiHeadAttention()(input_embed)
model = tf.keras.models.Model(input_embed, input_encode)

0 comments on commit cb954ee

Please sign in to comment.