"docs/source/vscode:/vscode.git/clone" did not exist on "10e1ec9a8cf07e2d1a3e49e13629efc6cf8f3a45"
Unverified Commit 8bb2c387 authored by Yih-Dar's avatar Yih-Dar Committed by GitHub
Browse files

Fix FlaxBigBirdEmbeddings (#17842)


Co-authored-by: default avatarydshieh <ydshieh@users.noreply.github.com>
parent b68d408f
......@@ -229,8 +229,8 @@ class FlaxBigBirdEmbeddings(nn.Module):
hidden_states = inputs_embeds + token_type_embeddings + position_embeds
# Layer Norm
hidden_states = self.LayerNorm(hidden_states)
hidden_states = self.dropout(hidden_states, deterministic=deterministic)
hidden_states = self.LayerNorm(hidden_states)
return hidden_states
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment