Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
chenpangpang
transformers
Commits
ce521776
"docs/source/main_classes/processors.rst" did not exist on "4acd87ff4e6a363b47d13b8a960b4b8340a3d615"
Commit
ce521776
authored
Dec 11, 2018
by
thomwolf
Browse files
added version in __init__.py
parent
d3fcec1a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
pytorch_pretrained_bert/__init__.py
pytorch_pretrained_bert/__init__.py
+1
-0
requirements.txt
requirements.txt
+2
-3
setup.py
setup.py
+1
-1
No files found.
pytorch_pretrained_bert/__init__.py
View file @
ce521776
__version__
=
0.4
.
0
from
.tokenization
import
BertTokenizer
,
BasicTokenizer
,
WordpieceTokenizer
from
.modeling
import
(
BertConfig
,
BertModel
,
BertForPreTraining
,
BertForMaskedLM
,
BertForNextSentencePrediction
,
...
...
requirements.txt
View file @
ce521776
# This installs Pytorch for CUDA 8 only. If you are using a newer version,
# please visit http://pytorch.org/ and install the relevant version.
torch
>=0.4.1,<0.5.0
# PyTorch
torch
>=0.4.1
# progress bars in model download and training scripts
tqdm
# Accessing files from S3 directly.
...
...
setup.py
View file @
ce521776
...
...
@@ -2,7 +2,7 @@ from setuptools import find_packages, setup
setup
(
name
=
"pytorch_pretrained_bert"
,
version
=
"0.
3
.0"
,
version
=
"0.
4
.0"
,
author
=
"Thomas Wolf, Victor Sanh, Tim Rault, Google AI Language Team Authors"
,
author_email
=
"thomas@huggingface.co"
,
description
=
"PyTorch version of Google AI BERT model with script to load Google pre-trained models"
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment