Can somebody help this is my error?
AssertionError Traceback (most recent call last)
in
28
29
—> 30 Emojify_V2_test(Emojify_V2)
in Emojify_V2_test(target)
22 model = target((maxLen,), word_to_vec_map, word_to_index)
23
—> 24 assert type(model) == Functional, “Make sure you have correctly created Model instance which converts "sentence_indices" into "X"”
25
26 expectedModel = [[‘InputLayer’, [(None, 4)], 0], [‘Embedding’, (None, 4, 2), 30], [‘LSTM’, (None, 4, 128), 67072, (None, 4, 2), ‘tanh’, True], [‘Dropout’, (None, 4, 128), 0, 0.5], [‘LSTM’, (None, 128), 131584, (None, 4, 128), ‘tanh’, False], [‘Dropout’, (None, 128), 0, 0.5], [‘Dense’, (None, 5), 645, ‘linear’], [‘Activation’, (None, 5), 0]]
AssertionError: Make sure you have correctly created Model instance which converts “sentence_indices” into “X”