Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion telestylevideo_inference.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def __init__(self, config: Dict):
self.W = config['width']
self.num_inference_steps = config['num_inference_steps']
self.vae_path = os.path.join(config['ckpt_t2v_path'], "vae")
self.transformer_config_path = os.path.join(config['ckpt_t2v_path'], "transformer_config.json")
self.transformer_config_path = os.path.join(config['ckpt_t2v_path'], "transformer", "config.json")
self.scheduler_path = os.path.join(config['ckpt_t2v_path'], "scheduler")
self.ckpt_path = config['ckpt_dit_path']
self.output_path = config['output_path']
Expand Down
2 changes: 1 addition & 1 deletion telestylevideo_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
from diffusers.callbacks import MultiPipelineCallbacks, PipelineCallback
from diffusers.loaders import WanLoraLoaderMixin
from diffusers.models import AutoencoderKLWan
from transformer_semi_dit_2_patch_embedders import WanTransformer3DModel
from diffusers.models import WanTransformer3DModel
from diffusers.schedulers import FlowMatchEulerDiscreteScheduler
from diffusers.utils import is_torch_xla_available, logging, replace_example_docstring
from diffusers.utils.torch_utils import randn_tensor
Expand Down