Merge pull request #378 from huggingface/absolute_imports

Add absolute imports to GPT, GPT-2, Transfo-XL and and fix empty nbest_predictions.json
This commit is contained in:
Thomas Wolf 2019-03-14 10:00:47 +01:00 committed by GitHub
commit 76906372b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 1 deletions

View File

@ -15,6 +15,8 @@
# limitations under the License.
"""PyTorch OpenAI GPT-2 model."""
from __future__ import absolute_import, division, print_function, unicode_literals
import collections
import copy
import json

View File

@ -15,6 +15,8 @@
# limitations under the License.
"""PyTorch OpenAI GPT model."""
from __future__ import absolute_import, division, print_function, unicode_literals
import collections
import copy
import json

View File

@ -18,6 +18,8 @@
In particular https://github.com/kimiyoung/transformer-xl/blob/master/pytorch/mem_transformer.py
"""
from __future__ import absolute_import, division, print_function, unicode_literals
import os
import copy
import json