Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modernbert Release Fixes #35344

Merged
merged 4 commits into from
Dec 19, 2024

Conversation

warner-benjamin
Copy link
Contributor

This PR resolves two issues with ModernBERT so it will be working for release in just under an hour.

First, ModernBERT has a final head layer ModernBertPredictionHead with a pretrained Linear layer and LayerNorm . In downstream heads, these two layers are loaded to ModernBertPoolingHead. I readded ModernBertPoolingHead to ModernBertForTokenClassification so TokenClassification models will load the pretrained layer weights.

Second, #35235 appears to have broken the SDPA/Eager paths by changing how the RoPE layer ModernBERT inherited from works. In the interest of expediency, I unmoduarized it so we can have a working ModernBERT implementation on all paths.

cc @ArthurZucker @tomaarsen

Copy link
Member

@tomaarsen tomaarsen left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The rotary embedding solution is a temporary fix - I'll introduce a modular-approved one soon, but we have a release to hit.

I didn't realise the ForTokenClassification model also requires the dense -> act -> norm -> drop, I thought it was only drop like with BERT. My apologies, thanks for the quick fix.

@HuggingFaceDocBuilderDev

The docs for this PR live here. All of your documentation changes will be reflected on that endpoint. The docs are available until 30 days after the last update.

Copy link
Collaborator

@ArthurZucker ArthurZucker left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks 🤗

@tomaarsen tomaarsen merged commit 0ade1ca into huggingface:main Dec 19, 2024
10 checks passed
@sileod
Copy link

sileod commented Dec 19, 2024

Hi, thanks, is there a plan to support multiplechoice ?

@stefan-it
Copy link
Collaborator

stefan-it commented Dec 20, 2024

Have you already road-tested the token classification implementation? E.g. using the ModernBERT Large model only yields to ~91% F-Score on CoNLL-2003 (Test set, I tried some batch size and learning rate configurations), in two different frameworks (Transformers and Flair). I am not sure if ModernBERT needs really special hyper-parameters or if there are fixes needed in the architecture 🤔

I tested it with b5a557e.

@KoichiYasuoka
Copy link
Contributor

Hi @stefan-it I've tried to test ModernBertForTokenClassification with ModernBERT-base and UD_English-EWT and got 97% F1-Score on UPOS (see my report written in Japanese). During my test I found that ModernBertForTokenClassification lacked get_input_embeddings() and made PR #35422. And I seem the tokenizer of ModernBERT-base is slightly difficult to handle POS-tagging (than BERT's one) and "classifier_dropout": 0.0 seems too small.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants