Skip to content

Commit 4ccab44

Browse files
committed
import error fix
1 parent f913912 commit 4ccab44

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/maxdiffusion/pipelines/ltx2/ltx2_pipeline.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131

3232
from ...utils import logging
3333
from ...schedulers import FlaxFlowMatchScheduler
34-
from ...models.ltx2.autoencoder_kl_ltx2 import AutoencoderKLLTX2Video
35-
from ...models.ltx2.autoencoder_kl_ltx2_audio import AutoencoderKLLTX2Audio
34+
from ...models.ltx2.autoencoder_kl_ltx2 import LTX2VideoAutoencoderKL
35+
from ...models.ltx2.autoencoder_kl_ltx2_audio import FlaxAutoencoderKLLTX2Audio
3636
from ...models.ltx2.transformer_ltx2 import LTX2VideoTransformer3DModel
3737
from ...models.ltx2.text_encoders.text_encoders_ltx2 import LTX2AudioVideoGemmaTextEncoder
3838
from ...video_processor import VideoProcessor
@@ -242,8 +242,8 @@ def quantize_transformer(
242242
def __init__(
243243
self,
244244
scheduler: FlaxFlowMatchScheduler,
245-
vae: AutoencoderKLLTX2Video,
246-
audio_vae: AutoencoderKLLTX2Audio,
245+
vae: LTX2VideoAutoencoderKL,
246+
audio_vae: FlaxAutoencoderKLLTX2Audio,
247247
text_encoder: Any, # Placeholder for Gemma3
248248
tokenizer: AutoTokenizer,
249249
connectors: LTX2AudioVideoGemmaTextEncoder,

0 commit comments

Comments
 (0)