-
Notifications
You must be signed in to change notification settings - Fork 26.9k
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 #288 from huggingface/gpt2
forgot to add regex to requirements.txt :(
- Loading branch information
Showing
3 changed files
with
7 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,7 +38,7 @@ | |
|
||
setup( | ||
name="pytorch_pretrained_bert", | ||
version="0.6.0", | ||
version="0.6.1", | ||
author="Thomas Wolf, Victor Sanh, Tim Rault, Google AI Language Team Authors, Open AI team Authors", | ||
author_email="[email protected]", | ||
description="PyTorch version of Google AI BERT model with script to load Google pre-trained models", | ||
|
@@ -53,7 +53,8 @@ | |
'numpy', | ||
'boto3', | ||
'requests', | ||
'tqdm'], | ||
'tqdm', | ||
'regex'], | ||
entry_points={ | ||
'console_scripts': [ | ||
"pytorch_pretrained_bert=pytorch_pretrained_bert.__main__:main", | ||
|