"tokenization_test.py" did not exist on "12e013dbac308f96b723f82095130d1a4416c155"
Unverified Commit b482ad47 authored by Lysandre Debut's avatar Lysandre Debut Committed by GitHub
Browse files

Fix template (#7040)

parent 762cba3b
......@@ -119,11 +119,15 @@ class TFXxxMainLayer(tf.keras.layers.Layer):
def __init__(self, config, **kwargs):
super().__init__(**kwargs)
def _resize_token_embeddings(self, new_num_tokens):
raise NotImplementedError # Not implemented yet in the library fr TF 2.0 models
def get_input_embeddings(self):
return self.embeddings
def set_input_embeddings(self, value):
self.embeddings.word_embeddings = value
self.embeddings.vocab_size = value.shape[0]
def _prune_heads(self, heads_to_prune):
raise NotImplementedError # Not implemented yet in the library fr TF 2.0 models
raise NotImplementedError # Not implemented yet in the library for TF 2.0 models
def call(
self,
......
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