File tree 3 files changed +13
-1
lines changed
3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 5
5
6
6
import numpy as np
7
7
import torch
8
- from transformers import is_torchvision_available
9
8
10
9
from .models import UNet2DConditionModel
11
10
from .utils import (
12
11
convert_state_dict_to_diffusers ,
13
12
convert_state_dict_to_peft ,
14
13
deprecate ,
15
14
is_peft_available ,
15
+ is_torchvision_available ,
16
16
is_transformers_available ,
17
17
)
18
18
Original file line number Diff line number Diff line change 75
75
is_torch_version ,
76
76
is_torch_xla_available ,
77
77
is_torchsde_available ,
78
+ is_torchvision_available ,
78
79
is_transformers_available ,
79
80
is_transformers_version ,
80
81
is_unidecode_available ,
Original file line number Diff line number Diff line change 278
278
except importlib_metadata .PackageNotFoundError :
279
279
_peft_available = False
280
280
281
+ _torchvision_available = importlib .util .find_spec ("torchvision" ) is not None
282
+ try :
283
+ _torchvision_version = importlib_metadata .version ("torchvision" )
284
+ logger .debug (f"Successfully imported torchvision version { _torchvision_version } " )
285
+ except importlib_metadata .PackageNotFoundError :
286
+ _torchvision_available = False
287
+
281
288
282
289
def is_torch_available ():
283
290
return _torch_available
@@ -367,6 +374,10 @@ def is_peft_available():
367
374
return _peft_available
368
375
369
376
377
+ def is_torchvision_available ():
378
+ return _torchvision_available
379
+
380
+
370
381
# docstyle-ignore
371
382
FLAX_IMPORT_ERROR = """
372
383
{0} requires the FLAX library but it was not found in your environment. Checkout the instructions on the
You can’t perform that action at this time.
0 commit comments