Describe the bug
The UnCLIP pipeline, like any new pipeline in src/pipelines should depend on the tester mixin:
|
class PipelineTesterMixin: |
just like Stable Diffusion does:
|
class StableDiffusionPipelineFastTests(PipelineTesterMixin, unittest.TestCase): |
so that we can be sure that batched inference etc... works well.
This is currently not the case:
|
class UnCLIPImageVariationPipelineFastTests(unittest.TestCase): |
|
class UnCLIPPipelineFastTests(unittest.TestCase): |
@williamberman could you take care of this? :-)
Reproduction
Batched inference tests etc... are currently not run.
Logs
No response
System Info
Current "main" of diffusers.
Describe the bug
The UnCLIP pipeline, like any new pipeline in
src/pipelinesshould depend on the tester mixin:diffusers/tests/test_pipelines_common.py
Line 35 in debc74f
diffusers/tests/pipelines/stable_diffusion/test_stable_diffusion.py
Line 47 in debc74f
This is currently not the case:
diffusers/tests/pipelines/unclip/test_unclip_image_variation.py
Line 41 in debc74f
diffusers/tests/pipelines/unclip/test_unclip.py
Line 32 in debc74f
@williamberman could you take care of this? :-)
Reproduction
Batched inference tests etc... are currently not run.
Logs
No response
System Info
Current "main" of diffusers.