Skip to content

Commit

Permalink
Update model path in hunyuan_settings.py for video generation
Browse files Browse the repository at this point in the history
- Changed the model path to a specific file location for improved clarity and functionality.
- Updated the corresponding compiled Python file in the __pycache__ directory.
  • Loading branch information
VikramxD committed Jan 7, 2025
1 parent 0278480 commit 2d9095a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified configs/__pycache__/hunyuan_settings.cpython-310.pyc
Binary file not shown.
2 changes: 1 addition & 1 deletion configs/hunyuan_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class VideoGenSettings(BaseSettings):
embedded_guidance_scale (float): Scale for embedded guidance (1.0-20.0)
output_dir (str): Directory path for saving generated videos
"""
model_path: str = Field('/root/Daifuku/hunyuan/ckpts/hunyuan-video-t2v-720p', description="Path to the model")
model_path: str = Field('/root/Daifuku/hunyuan/ckpts/hunyuan-video-t2v-720p/transformers/mp_rank_00_model_states_fp8.pt', description="Path to the model")
prompt: str = Field(
default="A cat walks on the grass, realistic style.",
description="Prompt for video generation"
Expand Down

0 comments on commit 2d9095a

Please sign in to comment.