Update pipeline.py
Browse files- pipeline.py +6 -0
pipeline.py
CHANGED
@@ -202,6 +202,12 @@ class AnimateDiffPipeline(DiffusionPipeline, TextualInversionLoaderMixin, IPAdap
|
|
202 |
|
203 |
if controlnet is None:
|
204 |
if hasattr(self, "controlnet"):delattr(self, "controlnet")
|
|
|
|
|
|
|
|
|
|
|
|
|
205 |
|
206 |
self.register_modules(
|
207 |
vae=vae,
|
|
|
202 |
|
203 |
if controlnet is None:
|
204 |
if hasattr(self, "controlnet"):delattr(self, "controlnet")
|
205 |
+
|
206 |
+
# print all the attributes
|
207 |
+
print("Attributes:")
|
208 |
+
for attr in dir(self):
|
209 |
+
if not attr.startswith("__") and not callable(getattr(self, attr)):
|
210 |
+
print(attr)
|
211 |
|
212 |
self.register_modules(
|
213 |
vae=vae,
|