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
bert code i can see has 3 inputs. (token,segment,mask)
but this code only 2 inputs (token,segment)
why there is no mask input? masked_layer = Masked(name='MLM')([mlm_pred_layer, inputs[-1]])
this layer use inputs (segment) other than (mask)
The text was updated successfully, but these errors were encountered:
bert code i can see has 3 inputs. (token,segment,mask)
but this code only 2 inputs (token,segment)
why there is no mask input?
masked_layer = Masked(name='MLM')([mlm_pred_layer, inputs[-1]])
this layer use inputs (segment) other than (mask)
The text was updated successfully, but these errors were encountered: