mirror of
https://github.com/brycedrennan/imaginAIry
synced 2024-10-31 03:20:40 +00:00
5b56f05da7
- fix: default config wasn't being selected for custom models
20 lines
605 B
Python
20 lines
605 B
Python
import os.path
|
|
|
|
# tells pytorch to allow MPS usage (for Mac M1 compatibility)
|
|
os.putenv("PYTORCH_ENABLE_MPS_FALLBACK", "1")
|
|
import PIL.Image # noqa
|
|
|
|
from .api import imagine, imagine_image_files # noqa
|
|
from .enhancers.describe_image_blip import generate_caption # noqa
|
|
from .schema import ( # noqa
|
|
ImaginePrompt,
|
|
ImagineResult,
|
|
LazyLoadingImage,
|
|
WeightedPrompt,
|
|
)
|
|
from .version import __version__ # noqa
|
|
|
|
# https://stackoverflow.com/questions/71738218/module-pil-has-not-attribute-resampling
|
|
if not hasattr(PIL.Image, "Resampling"): # Pillow<9.0
|
|
PIL.Image.Resampling = PIL.Image
|