-
Notifications
You must be signed in to change notification settings - Fork 27.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #73 from huggingface/third-release
Third release
- Loading branch information
Showing
8 changed files
with
311 additions
and
67 deletions.
There are no files selected for viewing
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
from .tokenization import BertTokenizer, BasicTokenizer, WordpieceTokenizer | ||
from .modeling import (BertConfig, BertModel, BertForPreTraining, | ||
BertForMaskedLM, BertForNextSentencePrediction, | ||
BertForSequenceClassification, BertForQuestionAnswering) | ||
BertForSequenceClassification, BertForTokenClassification, | ||
BertForQuestionAnswering) | ||
from .optimization import BertAdam | ||
from .file_utils import PYTORCH_PRETRAINED_BERT_CACHE |
Oops, something went wrong.