"vscode:/vscode.git/clone" did not exist on "33a408aa14df68775dac710a277b5242bf0aee33"
Commit 8e5945a7 authored by anton-l's avatar anton-l
Browse files

fix glide import error

parent 84bd65bc
from .pipeline_bddm import BDDM
from .pipeline_ddim import DDIM
from .pipeline_ddpm import DDPM
from .pipeline_glide import GLIDE
try:
from .pipeline_glide import GLIDE
except ImportError:
class GLIDE:
pass
from .pipeline_latent_diffusion import LatentDiffusion
from .pipeline_pndm import PNDM
......@@ -15,6 +15,7 @@
""" PyTorch CLIP model."""
import math
import logging
from dataclasses import dataclass
from typing import Any, Optional, Tuple, Union
......
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