Bugfix on init file. Missing comma.

This commit is contained in:
Julien Plu 2019-12-04 10:00:25 +01:00
parent ecb923da9c
commit 254ebb979c

View File

@ -162,7 +162,7 @@ if is_tf_available():
from .modeling_tf_distilbert import (TFDistilBertPreTrainedModel, TFDistilBertMainLayer,
TFDistilBertModel, TFDistilBertForMaskedLM,
TFDistilBertForSequenceClassification,
TFDistilBertForTokenClassification
TFDistilBertForTokenClassification,
TFDistilBertForQuestionAnswering,
TF_DISTILBERT_PRETRAINED_MODEL_ARCHIVE_MAP)