Unverified Commit d1691d90 authored by Sylvain Gugger's avatar Sylvain Gugger Committed by GitHub
Browse files

Samell fixed in tf template (#7044)

parent 63e53945
...@@ -19,9 +19,6 @@ ...@@ -19,9 +19,6 @@
# In this template, replace all the XXX (various casings) with your model name # In this template, replace all the XXX (various casings) with your model name
#################################################### ####################################################
import logging
import tensorflow as tf import tensorflow as tf
from .configuration_xxx import XxxConfig from .configuration_xxx import XxxConfig
...@@ -47,12 +44,14 @@ from .modeling_tf_utils import ( ...@@ -47,12 +44,14 @@ from .modeling_tf_utils import (
TFSequenceClassificationLoss, TFSequenceClassificationLoss,
TFTokenClassificationLoss, TFTokenClassificationLoss,
get_initializer, get_initializer,
keras_serializable,
shape_list, shape_list,
) )
from .tokenization_utils import BatchEncoding from .tokenization_utils import BatchEncoding
from .utils import logging
logger = logging.getLogger(__name__) logger = logging.get_logger(__name__)
_CONFIG_FOR_DOC = "XXXConfig" _CONFIG_FOR_DOC = "XXXConfig"
_TOKENIZER_FOR_DOC = "XxxTokenizer" _TOKENIZER_FOR_DOC = "XxxTokenizer"
...@@ -115,6 +114,7 @@ class TFXxxLayer(tf.keras.layers.Layer): ...@@ -115,6 +114,7 @@ class TFXxxLayer(tf.keras.layers.Layer):
# The full model without a specific pretrained or finetuning head is # The full model without a specific pretrained or finetuning head is
# provided as a tf.keras.layers.Layer usually called "TFXxxMainLayer" # provided as a tf.keras.layers.Layer usually called "TFXxxMainLayer"
#################################################### ####################################################
@keras_serializable
class TFXxxMainLayer(tf.keras.layers.Layer): class TFXxxMainLayer(tf.keras.layers.Layer):
def __init__(self, config, **kwargs): def __init__(self, config, **kwargs):
super().__init__(**kwargs) super().__init__(**kwargs)
......
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