Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename lora files #214

Merged
merged 2 commits into from
Jan 13, 2025
Merged
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 finetrainers/cogvideox/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
from .cogvideox_lora import COGVIDEOX_T2V_LORA_CONFIG
from .full_finetune import COGVIDEOX_T2V_FULL_FINETUNE_CONFIG
from .lora import COGVIDEOX_T2V_LORA_CONFIG
2 changes: 1 addition & 1 deletion finetrainers/cogvideox/full_finetune.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from diffusers import CogVideoXPipeline

from .cogvideox_lora import (
from .lora import (
calculate_noisy_latents,
collate_fn_t2v,
forward_pass,
Expand Down
2 changes: 1 addition & 1 deletion finetrainers/hunyuan_video/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
from .full_finetune import HUNYUAN_VIDEO_T2V_FULL_FINETUNE_CONFIG
from .hunyuan_video_lora import HUNYUAN_VIDEO_T2V_LORA_CONFIG
from .lora import HUNYUAN_VIDEO_T2V_LORA_CONFIG
2 changes: 1 addition & 1 deletion finetrainers/hunyuan_video/full_finetune.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from diffusers import HunyuanVideoPipeline

from .hunyuan_video_lora import (
from .lora import (
collate_fn_t2v,
forward_pass,
initialize_pipeline,
Expand Down
2 changes: 1 addition & 1 deletion finetrainers/ltx_video/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
from .full_finetune import LTX_VIDEO_T2V_FULL_FINETUNE_CONFIG
from .ltx_video_lora import LTX_VIDEO_T2V_LORA_CONFIG
from .lora import LTX_VIDEO_T2V_LORA_CONFIG
2 changes: 1 addition & 1 deletion finetrainers/ltx_video/full_finetune.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from diffusers import LTXPipeline

from .ltx_video_lora import (
from .lora import (
collate_fn_t2v,
forward_pass,
initialize_pipeline,
Expand Down
Empty file modified tests/test_model_runs_minimally_lora.sh
100644 → 100755
Empty file.