"vscode:/vscode.git/clone" did not exist on "2c83b3c38d00377c0bb92a7f438758e10417bfd1"
Unverified Commit 8f46cd10 authored by Thomas Wolf's avatar Thomas Wolf Committed by GitHub
Browse files

Merge pull request #288 from huggingface/gpt2

forgot to add regex to requirements.txt :(
parents 0856a231 e0855e89
__version__ = "0.6.0"
__version__ = "0.6.1"
from .tokenization import BertTokenizer, BasicTokenizer, WordpieceTokenizer
from .tokenization_openai import OpenAIGPTTokenizer
from .tokenization_transfo_xl import (TransfoXLTokenizer, TransfoXLCorpus)
......
......@@ -6,3 +6,5 @@ tqdm
boto3
# Used for downloading models over HTTP
requests
# For OpenAI GPT
regex
\ No newline at end of file
......@@ -38,7 +38,7 @@ from setuptools import find_packages, setup
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="thomas@huggingface.co",
description="PyTorch version of Google AI BERT model with script to load Google pre-trained models",
......@@ -53,7 +53,8 @@ setup(
'numpy',
'boto3',
'requests',
'tqdm'],
'tqdm',
'regex'],
entry_points={
'console_scripts': [
"pytorch_pretrained_bert=pytorch_pretrained_bert.__main__:main",
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment