Spaces:
Paused
Paused
Update api/ltx/ltx_aduc_pipeline.py
Browse files
api/ltx/ltx_aduc_pipeline.py
CHANGED
|
@@ -201,6 +201,8 @@ class LtxAducPipeline:
|
|
| 201 |
logging.info(f"Processing scene {i+1}/{num_chunks}: '{chunk_prompt[:50]}...'")
|
| 202 |
call_kwargs.pop("prompt", None)
|
| 203 |
call_kwargs["prompt"] = chunk_prompt
|
|
|
|
|
|
|
| 204 |
|
| 205 |
with torch.autocast(device_type=self.main_device.type, dtype=self.runtime_autocast_dtype, enabled="cuda" in self.main_device.type):
|
| 206 |
chunk_latents = self.pipeline(**call_kwargs).images
|
|
|
|
| 201 |
logging.info(f"Processing scene {i+1}/{num_chunks}: '{chunk_prompt[:50]}...'")
|
| 202 |
call_kwargs.pop("prompt", None)
|
| 203 |
call_kwargs["prompt"] = chunk_prompt
|
| 204 |
+
|
| 205 |
+
print (f"overlap_latents {call_kwargs}")
|
| 206 |
|
| 207 |
with torch.autocast(device_type=self.main_device.type, dtype=self.runtime_autocast_dtype, enabled="cuda" in self.main_device.type):
|
| 208 |
chunk_latents = self.pipeline(**call_kwargs).images
|