Add tf_keras imports to prepare for Keras 3 (#28588)
* Port core files + ESM (because ESM code is odd) * Search-replace in modelling code * Fix up transfo_xl as well * Fix other core files + tests (still need to add correct import to tests) * Fix cookiecutter * make fixup, fix imports in some more core files * Auto-add imports to tests * Cleanup, add imports to sagemaker tests * Use correct exception for importing tf_keras * Fixes in modeling_tf_utils * make fixup * Correct version parsing code * Ensure the pipeline tests correctly revert to float32 after each test * Ensure the pipeline tests correctly revert to float32 after each test * More tf.keras -> keras * Add dtype cast * Better imports of tf_keras * Add a cast for tf.assign, just in case * Fix callback imports
This commit is contained in:
@@ -5,10 +5,24 @@ import time
|
||||
|
||||
import tensorflow as tf
|
||||
from datasets import load_dataset
|
||||
from packaging.version import parse
|
||||
|
||||
from transformers import AutoTokenizer, TFAutoModelForSequenceClassification
|
||||
|
||||
|
||||
try:
|
||||
import tf_keras as keras
|
||||
except (ModuleNotFoundError, ImportError):
|
||||
import keras
|
||||
|
||||
if parse(keras.__version__).major > 2:
|
||||
raise ValueError(
|
||||
"Your currently installed version of Keras is Keras 3, but this is not yet supported in "
|
||||
"Transformers. Please install the backwards-compatible tf-keras package with "
|
||||
"`pip install tf-keras`."
|
||||
)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
parser = argparse.ArgumentParser()
|
||||
|
||||
@@ -75,9 +89,9 @@ if __name__ == "__main__":
|
||||
)
|
||||
|
||||
# fine optimizer and loss
|
||||
optimizer = tf.keras.optimizers.Adam(learning_rate=args.learning_rate)
|
||||
loss = tf.keras.losses.SparseCategoricalCrossentropy(from_logits=True)
|
||||
metrics = [tf.keras.metrics.SparseCategoricalAccuracy()]
|
||||
optimizer = keras.optimizers.Adam(learning_rate=args.learning_rate)
|
||||
loss = keras.losses.SparseCategoricalCrossentropy(from_logits=True)
|
||||
metrics = [keras.metrics.SparseCategoricalAccuracy()]
|
||||
model.compile(optimizer=optimizer, loss=loss, metrics=metrics)
|
||||
|
||||
start_train_time = time.time()
|
||||
|
||||
Reference in New Issue
Block a user