Spaces:
Sleeping
Sleeping
| # Copyright 2023 The TensorFlow Authors. All Rights Reserved. | |
| # | |
| # Licensed under the Apache License, Version 2.0 (the "License"); | |
| # you may not use this file except in compliance with the License. | |
| # You may obtain a copy of the License at | |
| # | |
| # http://www.apache.org/licenses/LICENSE-2.0 | |
| # | |
| # Unless required by applicable law or agreed to in writing, software | |
| # distributed under the License is distributed on an "AS IS" BASIS, | |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| # See the License for the specific language governing permissions and | |
| # limitations under the License. | |
| """Tests for multitask.base_trainer.""" | |
| from absl.testing import parameterized | |
| import tensorflow as tf, tf_keras | |
| from tensorflow.python.distribute import combinations | |
| from tensorflow.python.distribute import strategy_combinations | |
| from official.modeling.multitask import base_trainer | |
| from official.modeling.multitask import configs | |
| from official.modeling.multitask import multitask | |
| from official.modeling.multitask import test_utils | |
| def all_strategy_combinations(): | |
| return combinations.combine( | |
| distribution=[ | |
| strategy_combinations.default_strategy, | |
| strategy_combinations.cloud_tpu_strategy, | |
| strategy_combinations.one_device_strategy_gpu, | |
| ], | |
| mode="eager", | |
| ) | |
| class BaseTrainerTest(tf.test.TestCase, parameterized.TestCase): | |
| def test_multitask_joint_trainer(self, distribution): | |
| with distribution.scope(): | |
| tasks = [ | |
| test_utils.MockFooTask(params=test_utils.FooConfig(), name="foo"), | |
| test_utils.MockBarTask(params=test_utils.BarConfig(), name="bar") | |
| ] | |
| task_weights = {"foo": 1.0, "bar": 1.0} | |
| test_multitask = multitask.MultiTask( | |
| tasks=tasks, task_weights=task_weights) | |
| test_optimizer = tf_keras.optimizers.SGD(0.1) | |
| model = test_utils.MockMultiTaskModel() | |
| test_trainer = base_trainer.MultiTaskBaseTrainer( | |
| multi_task=test_multitask, | |
| multi_task_model=model, | |
| optimizer=test_optimizer) | |
| results = test_trainer.train(tf.convert_to_tensor(5, dtype=tf.int32)) | |
| self.assertContainsSubset(["training_loss", "bar_acc"], | |
| results["bar"].keys()) | |
| self.assertContainsSubset(["training_loss", "foo_acc"], | |
| results["foo"].keys()) | |
| def test_trainer_with_configs(self): | |
| config = configs.MultiTaskConfig( | |
| task_routines=(configs.TaskRoutine( | |
| task_name="foo", | |
| task_config=test_utils.FooConfig(), | |
| task_weight=0.5), | |
| configs.TaskRoutine( | |
| task_name="bar", | |
| task_config=test_utils.BarConfig(), | |
| task_weight=0.5))) | |
| test_multitask = multitask.MultiTask.from_config(config) | |
| test_optimizer = tf_keras.optimizers.SGD(0.1) | |
| model = test_utils.MockMultiTaskModel() | |
| test_trainer = base_trainer.MultiTaskBaseTrainer( | |
| multi_task=test_multitask, | |
| multi_task_model=model, | |
| optimizer=test_optimizer) | |
| results = test_trainer.train(tf.convert_to_tensor(5, dtype=tf.int32)) | |
| self.assertContainsSubset(["training_loss", "bar_acc"], | |
| results["bar"].keys()) | |
| self.assertContainsSubset(["training_loss", "foo_acc"], | |
| results["foo"].keys()) | |
| self.assertEqual(test_multitask.task_weight("foo"), 0.5) | |
| self.assertEqual(test_trainer.global_step.numpy(), 5) | |
| self.assertIn("learning_rate", results) | |
| if __name__ == "__main__": | |
| tf.test.main() | |