|
20 | 20 | from .models_test import ModelsTest |
21 | 21 |
|
22 | 22 | MODEL_LIST = [ |
23 | | - (vit.ViTTiny16, 192, {"input_shape": (224, 224, 3)}), |
24 | 23 | (vit.ViTS16, 384, {"input_shape": (224, 224, 3)}), |
25 | | - (vit.ViTB16, 768, {"input_shape": (224, 224, 3)}), |
26 | | - (vit.ViTL16, 1024, {"input_shape": (224, 224, 3)}), |
27 | | - (vit.ViTH16, 1280, {"input_shape": (224, 224, 3)}), |
28 | | - (vit.ViTTiny32, 192, {"input_shape": (224, 224, 3)}), |
29 | | - (vit.ViTS32, 384, {"input_shape": (224, 224, 3)}), |
30 | | - (vit.ViTB32, 768, {"input_shape": (224, 224, 3)}), |
31 | | - (vit.ViTL32, 1024, {"input_shape": (224, 224, 3)}), |
32 | | - (vit.ViTH32, 1280, {"input_shape": (224, 224, 3)}), |
33 | 24 | ] |
34 | 25 |
|
| 26 | +""" |
| 27 | +Below are other configurations that we omit from our CI but that can/should |
| 28 | +be tested manually when making changes to this model. |
| 29 | +(vit.ViTTiny16, 192, {"input_shape": (224, 224, 3)}), |
| 30 | +(vit.ViTB16, 768, {"input_shape": (224, 224, 3)}), |
| 31 | +(vit.ViTL16, 1024, {"input_shape": (224, 224, 3)}), |
| 32 | +(vit.ViTH16, 1280, {"input_shape": (224, 224, 3)}), |
| 33 | +(vit.ViTTiny32, 192, {"input_shape": (224, 224, 3)}), |
| 34 | +(vit.ViTS32, 384, {"input_shape": (224, 224, 3)}), |
| 35 | +(vit.ViTB32, 768, {"input_shape": (224, 224, 3)}), |
| 36 | +(vit.ViTL32, 1024, {"input_shape": (224, 224, 3)}), |
| 37 | +(vit.ViTH32, 1280, {"input_shape": (224, 224, 3)}), |
| 38 | +""" |
| 39 | + |
35 | 40 |
|
36 | 41 | class ViTTest(ModelsTest, tf.test.TestCase, parameterized.TestCase): |
37 | 42 | @parameterized.parameters(*MODEL_LIST) |
|
0 commit comments