Skip to content

Commit

Permalink
Forgot to set data_layout argument
Browse files Browse the repository at this point in the history
  • Loading branch information
slyubomirsky committed Jan 21, 2022
1 parent 1e9f642 commit d50375d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/tvm/relay/frontend/keras.py
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ def _convert_convolution1d(inexpr, keras_layer, etab, data_layout, input_shape=N
else:
act_type = keras_layer.activation.__name__
if act_type != "linear":
out = _convert_activation(out, act_type, etab)
out = _convert_activation(out, act_type, etab, data_layout)

return out

Expand Down

0 comments on commit d50375d

Please sign in to comment.