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

add RoFormer Model #804

Merged
merged 16 commits into from
Aug 2, 2021
2 changes: 2 additions & 0 deletions paddlenlp/transformers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,5 @@
from .nezha.tokenizer import *
from .bart.modeling import *
from .bart.tokenizer import *
from .roformer.modeling import *
from .roformer.tokenizer import *
2 changes: 2 additions & 0 deletions paddlenlp/transformers/roformer/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from .modeling import *
from .tokenizer import *
yingyibiao marked this conversation as resolved.
Show resolved Hide resolved
Loading