@@ -70,9 +70,9 @@ def test_transforms(self, weights: WeightsEnum) -> None:
70
70
}
71
71
weights .transforms (sample )
72
72
73
- @pytest .mark .slow
74
- def test_vit_download (self , weights : WeightsEnum ) -> None :
75
- vit_small_patch16_224 (weights = weights )
73
+ # @pytest.mark.slow
74
+ # def test_vit_download(self, weights: WeightsEnum) -> None:
75
+ # vit_small_patch16_224(weights=weights)
76
76
77
77
78
78
class TestViTBase16 :
@@ -119,9 +119,9 @@ def test_transforms(self, weights: WeightsEnum) -> None:
119
119
}
120
120
weights .transforms (sample )
121
121
122
- @pytest .mark .slow
123
- def test_vit_download (self , weights : WeightsEnum ) -> None :
124
- vit_base_patch16_224 (weights = weights )
122
+ # @pytest.mark.slow
123
+ # def test_vit_download(self, weights: WeightsEnum) -> None:
124
+ # vit_base_patch16_224(weights=weights)
125
125
126
126
127
127
class TestViTLarge16 :
@@ -274,9 +274,9 @@ def test_transforms(self, weights: WeightsEnum) -> None:
274
274
sample = {'image' : torch .arange (c * h * w , dtype = torch .float ).view (c , h , w )}
275
275
weights .transforms (sample )
276
276
277
- @pytest .mark .slow
278
- def test_vit_download (self , weights : WeightsEnum ) -> None :
279
- vit_small_patch14_dinov2 (weights = weights )
277
+ # @pytest.mark.slow
278
+ # def test_vit_download(self, weights: WeightsEnum) -> None:
279
+ # vit_small_patch14_dinov2(weights=weights)
280
280
281
281
282
282
class TestViTBase14_DINOv2 :
@@ -327,6 +327,6 @@ def test_transforms(self, weights: WeightsEnum) -> None:
327
327
sample = {'image' : torch .arange (c * h * w , dtype = torch .float ).view (c , h , w )}
328
328
weights .transforms (sample )
329
329
330
- @pytest .mark .slow
331
- def test_vit_download (self , weights : WeightsEnum ) -> None :
332
- vit_base_patch14_dinov2 (weights = weights )
330
+ # @pytest.mark.slow
331
+ # def test_vit_download(self, weights: WeightsEnum) -> None:
332
+ # vit_base_patch14_dinov2(weights=weights)
0 commit comments