You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As shown in this colab, the mask can arbitrarily change the shape of output.
Although the document requires that the mask has the same shape with input, no check exists actually.
In my project, the shape of input is hard to compute and this potential incompatibility can affect the result and is hard to debug since softmax now silently generates an wrong output.
Currently the output is:
You can identify the shape changed by mask(line 2 and line 3 of output), which is different from the correct shape computed by compute_output_shape() (line4).
The text was updated successfully, but these errors were encountered:
As shown in this colab, the mask can arbitrarily change the shape of output.
Although the document requires that the mask has the same shape with input, no check exists actually.
In my project, the shape of input is hard to compute and this potential incompatibility can affect the result and is hard to debug since softmax now silently generates an wrong output.
Currently the output is:
You can identify the shape changed by mask(line 2 and line 3 of output), which is different from the correct shape computed by compute_output_shape() (line4).
The text was updated successfully, but these errors were encountered: