Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
|
@@ -90,9 +90,11 @@ pipeline = DistilledPipeline(
|
|
| 90 |
spatial_upsampler_path=spatial_upsampler_path,
|
| 91 |
gemma_root=None, # No text encoder in this space
|
| 92 |
loras=loras,
|
| 93 |
-
fp8transformer=
|
| 94 |
local_files_only=False,
|
| 95 |
)
|
|
|
|
|
|
|
| 96 |
|
| 97 |
# Initialize text encoder client
|
| 98 |
print(f"Connecting to text encoder space: {TEXT_ENCODER_SPACE}")
|
|
|
|
| 90 |
spatial_upsampler_path=spatial_upsampler_path,
|
| 91 |
gemma_root=None, # No text encoder in this space
|
| 92 |
loras=loras,
|
| 93 |
+
fp8transformer=False,
|
| 94 |
local_files_only=False,
|
| 95 |
)
|
| 96 |
+
pipeline._video_encoder = pipeline.model_ledger.video_encoder()
|
| 97 |
+
pipeline._transformer = pipeline.model_ledger.transformer()
|
| 98 |
|
| 99 |
# Initialize text encoder client
|
| 100 |
print(f"Connecting to text encoder space: {TEXT_ENCODER_SPACE}")
|