From 70a470723b810f9eb05b2aa935cf75db8290c69e Mon Sep 17 00:00:00 2001 From: MAXVIT Authors Date: Thu, 1 Jun 2023 16:33:55 -0700 Subject: [PATCH] Internal change PiperOrigin-RevId: 537160878 --- README.md | 1 + maxvit/__init__.py | 2 +- maxvit/models/__init__.py | 2 +- maxvit/models/attention_utils.py | 2 +- maxvit/models/common_ops.py | 2 +- maxvit/models/eval_ckpt.py | 2 +- maxvit/models/hp/__init__.py | 2 +- maxvit/models/hp/vision.py | 2 +- maxvit/models/hp/vision_i1k.py | 2 +- maxvit/models/hparam_configs.py | 2 +- maxvit/models/hparams.py | 2 +- maxvit/models/hparams_registry.py | 2 +- maxvit/models/maxvit.py | 2 +- maxvit/models/utils.py | 2 +- maxvit/test_maxvit.py | 2 +- setup.py | 2 +- 16 files changed, 16 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 8ea8a88..fc7e96b 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,7 @@ Google Research, University of Texas at Austin **News**: +- May, 2023: MaxViT is officially released in [Tensorflow model garden](https://github.com/tensorflow/models/tree/master/official/projects/maxvit) to support training! - Oct 12, 2022: Added the remaining ImageNet-1K and -21K checkpoints. - Oct 4, 2022: A list of updates * Added MaxViTTiny and MaxViTSmall checkpoints. diff --git a/maxvit/__init__.py b/maxvit/__init__.py index 0941a6c..991dfa8 100644 --- a/maxvit/__init__.py +++ b/maxvit/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/maxvit/models/__init__.py b/maxvit/models/__init__.py index 0941a6c..991dfa8 100644 --- a/maxvit/models/__init__.py +++ b/maxvit/models/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/maxvit/models/attention_utils.py b/maxvit/models/attention_utils.py index fd1a246..130361b 100644 --- a/maxvit/models/attention_utils.py +++ b/maxvit/models/attention_utils.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/maxvit/models/common_ops.py b/maxvit/models/common_ops.py index ff3586f..709afd2 100644 --- a/maxvit/models/common_ops.py +++ b/maxvit/models/common_ops.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/maxvit/models/eval_ckpt.py b/maxvit/models/eval_ckpt.py index 1899824..7d0da0c 100644 --- a/maxvit/models/eval_ckpt.py +++ b/maxvit/models/eval_ckpt.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/maxvit/models/hp/__init__.py b/maxvit/models/hp/__init__.py index 0941a6c..991dfa8 100644 --- a/maxvit/models/hp/__init__.py +++ b/maxvit/models/hp/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/maxvit/models/hp/vision.py b/maxvit/models/hp/vision.py index 3ccb493..1939fdb 100644 --- a/maxvit/models/hp/vision.py +++ b/maxvit/models/hp/vision.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/maxvit/models/hp/vision_i1k.py b/maxvit/models/hp/vision_i1k.py index 58a1850..9929142 100644 --- a/maxvit/models/hp/vision_i1k.py +++ b/maxvit/models/hp/vision_i1k.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/maxvit/models/hparam_configs.py b/maxvit/models/hparam_configs.py index ba31a9a..63d26eb 100644 --- a/maxvit/models/hparam_configs.py +++ b/maxvit/models/hparam_configs.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/maxvit/models/hparams.py b/maxvit/models/hparams.py index 674910a..b83ea8e 100644 --- a/maxvit/models/hparams.py +++ b/maxvit/models/hparams.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/maxvit/models/hparams_registry.py b/maxvit/models/hparams_registry.py index 7b2b51b..fe27ceb 100644 --- a/maxvit/models/hparams_registry.py +++ b/maxvit/models/hparams_registry.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/maxvit/models/maxvit.py b/maxvit/models/maxvit.py index b128f17..ff1611e 100644 --- a/maxvit/models/maxvit.py +++ b/maxvit/models/maxvit.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/maxvit/models/utils.py b/maxvit/models/utils.py index 4f247f1..dcf40f5 100644 --- a/maxvit/models/utils.py +++ b/maxvit/models/utils.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/maxvit/test_maxvit.py b/maxvit/test_maxvit.py index 8ebdd51..91e6a6a 100644 --- a/maxvit/test_maxvit.py +++ b/maxvit/test_maxvit.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/setup.py b/setup.py index 7cbbb80..9e1c674 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License.