Commit 4229101e authored by patil-suraj's avatar patil-suraj
Browse files

Merge branch 'main' of https://github.com/huggingface/diffusers into main

parents d1af9d91 99540747
...@@ -3,12 +3,11 @@ from torch import nn ...@@ -3,12 +3,11 @@ from torch import nn
from diffusers import ( from diffusers import (
ClassifierFreeGuidanceScheduler, ClassifierFreeGuidanceScheduler,
CLIPTextModel,
GlideDDIMScheduler, GlideDDIMScheduler,
GLIDESuperResUNetModel, GLIDESuperResUNetModel,
GLIDETextToImageUNetModel, GLIDETextToImageUNetModel,
) )
from modeling_glide import GLIDE from modeling_glide import GLIDE, CLIPTextModel
from transformers import CLIPTextConfig, GPT2Tokenizer from transformers import CLIPTextConfig, GPT2Tokenizer
......
This diff is collapsed.
...@@ -13,9 +13,10 @@ model_id = "fusing/glide-base" ...@@ -13,9 +13,10 @@ model_id = "fusing/glide-base"
pipeline = DiffusionPipeline.from_pretrained(model_id) pipeline = DiffusionPipeline.from_pretrained(model_id)
# run inference (text-conditioned denoising + upscaling) # run inference (text-conditioned denoising + upscaling)
img = pipeline("a clip art of a hugging face", generator) img = pipeline("a crayon drawing of a corgi", generator)
# process image to PIL # process image to PIL
img = img.squeeze(0)
img = ((img + 1) * 127.5).round().clamp(0, 255).to(torch.uint8).cpu().numpy() img = ((img + 1) * 127.5).round().clamp(0, 255).to(torch.uint8).cpu().numpy()
image_pil = PIL.Image.fromarray(img) image_pil = PIL.Image.fromarray(img)
......
...@@ -5,7 +5,6 @@ ...@@ -5,7 +5,6 @@
__version__ = "0.0.1" __version__ = "0.0.1"
from .modeling_utils import ModelMixin from .modeling_utils import ModelMixin
from .models.clip_text_transformer import CLIPTextModel
from .models.unet import UNetModel from .models.unet import UNetModel
from .models.unet_glide import GLIDESuperResUNetModel, GLIDETextToImageUNetModel from .models.unet_glide import GLIDESuperResUNetModel, GLIDETextToImageUNetModel
from .models.unet_ldm import UNetLDMModel from .models.unet_ldm import UNetLDMModel
......
...@@ -16,7 +16,6 @@ ...@@ -16,7 +16,6 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
from .clip_text_transformer import CLIPTextModel
from .unet import UNetModel from .unet import UNetModel
from .unet_glide import GLIDESuperResUNetModel, GLIDETextToImageUNetModel from .unet_glide import GLIDESuperResUNetModel, GLIDETextToImageUNetModel
from .unet_ldm import UNetLDMModel from .unet_ldm import UNetLDMModel
This diff is collapsed.
...@@ -34,7 +34,6 @@ logger = logging.get_logger(__name__) ...@@ -34,7 +34,6 @@ logger = logging.get_logger(__name__)
LOADABLE_CLASSES = { LOADABLE_CLASSES = {
"diffusers": { "diffusers": {
"ModelMixin": ["save_pretrained", "from_pretrained"], "ModelMixin": ["save_pretrained", "from_pretrained"],
"CLIPTextModel": ["save_pretrained", "from_pretrained"], # TODO (Anton): move to transformers
"GaussianDDPMScheduler": ["save_config", "from_config"], "GaussianDDPMScheduler": ["save_config", "from_config"],
"ClassifierFreeGuidanceScheduler": ["save_config", "from_config"], "ClassifierFreeGuidanceScheduler": ["save_config", "from_config"],
"GlideDDIMScheduler": ["save_config", "from_config"], "GlideDDIMScheduler": ["save_config", "from_config"],
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment