fix rela imports
Browse files- pipeline_glide.py +3 -3
pipeline_glide.py
CHANGED
@@ -36,9 +36,9 @@ from transformers.utils import (
|
|
36 |
replace_return_docstrings,
|
37 |
)
|
38 |
|
39 |
-
from
|
40 |
-
from
|
41 |
-
from
|
42 |
|
43 |
|
44 |
#####################
|
|
|
36 |
replace_return_docstrings,
|
37 |
)
|
38 |
|
39 |
+
from diffusers.models import GLIDESuperResUNetModel, GLIDETextToImageUNetModel
|
40 |
+
from diffusers.pipeline_utils import DiffusionPipeline
|
41 |
+
from diffusers.schedulers import ClassifierFreeGuidanceScheduler, DDIMScheduler
|
42 |
|
43 |
|
44 |
#####################
|