-
Notifications
You must be signed in to change notification settings - Fork 332
Remove internal lustre paths #1148
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -1,9 +1,9 @@ | ||||||||||||
| # LTX-2 QAD Training Configuration | ||||||||||||
| model: | ||||||||||||
| model_path: "/lustre/fsw/portfolios/adlr/projects/adlr_psx_numerics/users/ynankani/ComfyUI/models/checkpoints/ltx-av-step-1933500-split-new-vae.safetensors" | ||||||||||||
| model_path: "/path/to/ltx2/checkpoint.safetensors" # TODO: Set your LTX-2 checkpoint path | ||||||||||||
| training_mode: "full" | ||||||||||||
| load_checkpoint: | ||||||||||||
| text_encoder_path: "/lustre/fsw/portfolios/adlr/users/dhutchins/models/gemma" | ||||||||||||
| text_encoder_path: "/path/to/gemma" # TODO: Set your Gemma text encoder path | ||||||||||||
|
Comment on lines
5
to
+6
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix YAML nesting under
Proposed fix model:
model_path: "/path/to/ltx2/checkpoint.safetensors" # TODO: Set your LTX-2 checkpoint path
training_mode: "full"
load_checkpoint:
- text_encoder_path: "/path/to/gemma" # TODO: Set your Gemma text encoder path
+ text_encoder_path: "/path/to/gemma" # TODO: Set your Gemma text encoder path📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||
|
|
||||||||||||
| training_strategy: | ||||||||||||
| name: "text_to_video" | ||||||||||||
|
|
@@ -26,7 +26,7 @@ acceleration: | |||||||||||
| load_text_encoder_in_8bit: true | ||||||||||||
|
|
||||||||||||
| data: | ||||||||||||
| preprocessed_data_root: "/lustre/fsw/portfolios/adlr/users/scavallari/ltx-qad/qad-dataset" | ||||||||||||
| preprocessed_data_root: "/path/to/preprocessed" # TODO: Set your preprocessed dataset path | ||||||||||||
| num_dataloader_workers: 2 | ||||||||||||
|
|
||||||||||||
| validation: | ||||||||||||
|
|
||||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
removing seems too brutal. keeping them with some sane default value is good that people know what env vars are expected.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just followed whatever previous approach was followed. The .conf file has many such env variables and all are defined from that file