This repository has been archived by the owner on Nov 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 800
make RoBERTa usable in more tasks including QA #1017
Closed
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
facebook-github-bot
added
the
CLA Signed
Do not delete this pull request or issue due to inactivity.
label
Oct 1, 2019
borguz
force-pushed
the
export-D17690805
branch
from
October 2, 2019 20:11
0dbc24a
to
2ee75f9
Compare
borguz
added a commit
to borguz/pytext-1
that referenced
this pull request
Oct 2, 2019
Summary: Pull Request resolved: facebookresearch#1017 Currently Roberta encoder, model and tensorizer are pretty stand-alone, not conforming to other PyText tasks. This diff is an attempt to better integrate it. It involves the following: - Make GPT-2 BPE act like a proper tokenizer and also return char indices. This makes Roberta tensorizer more modular so code can be re-used - Make Roberta tensorizer conform more closely to BERTTensorizer so that the TransformerSentenceEncoder interfaces are better aligned. - Add a Roberta tensorizer for question answering Differential Revision: D17690805 fbshipit-source-id: fc7872098e5a654e1da2c8d4878be56535991c60
This pull request was exported from Phabricator. Differential Revision: D17690805 |
Summary: Pull Request resolved: facebookresearch#1017 Currently Roberta encoder, model and tensorizer are pretty stand-alone, not conforming to other PyText tasks. This diff is an attempt to better integrate it. It involves the following: - Make GPT-2 BPE act like a proper tokenizer and also return char indices. This makes Roberta tensorizer more modular so code can be re-used - Make Roberta tensorizer conform more closely to BERTTensorizer so that the TransformerSentenceEncoder interfaces are better aligned. - Add a Roberta tensorizer for question answering Differential Revision: D17690805 fbshipit-source-id: a7c6d10497f2c0a0cdf7bdffe843e4c64384d5c1
borguz
force-pushed
the
export-D17690805
branch
from
October 3, 2019 21:01
2ee75f9
to
607e381
Compare
This pull request was exported from Phabricator. Differential Revision: D17690805 |
borguz
added a commit
to borguz/pytext-1
that referenced
this pull request
Oct 3, 2019
Summary: Pull Request resolved: facebookresearch#1017 Currently Roberta encoder, model and tensorizer are pretty stand-alone, not conforming to other PyText tasks. This diff is an attempt to better integrate it. It involves the following: - Make GPT-2 BPE act like a proper tokenizer and also return char indices. This makes Roberta tensorizer more modular so code can be re-used - Make Roberta tensorizer conform more closely to BERTTensorizer so that the TransformerSentenceEncoder interfaces are better aligned. - Add a Roberta tensorizer for question answering Differential Revision: D17690805 fbshipit-source-id: 3c774429ed97598094d657c3069bd9865dc46f27
borguz
added a commit
to borguz/pytext-1
that referenced
this pull request
Oct 3, 2019
Summary: Pull Request resolved: facebookresearch#1017 Currently Roberta encoder, model and tensorizer are pretty stand-alone, not conforming to other PyText tasks. This diff is an attempt to better integrate it. It involves the following: - Make GPT-2 BPE act like a proper tokenizer and also return char indices. This makes Roberta tensorizer more modular so code can be re-used - Make Roberta tensorizer conform more closely to BERTTensorizer so that the TransformerSentenceEncoder interfaces are better aligned. - Add a Roberta tensorizer for question answering Differential Revision: D17690805 fbshipit-source-id: e97fe1352047e8d915005a3fcdd76bd53b268a03
This pull request has been merged in 3fd9764. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary:
Currently Roberta encoder, model and tensorizer are pretty stand-alone, not conforming to other PyText tasks. This diff is an attempt to better integrate it.
It involves the following:
Differential Revision: D17690805