Skip to content
Merged
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ export BASE_DATA_DIR=YOUR_DATA_DIR # directory of training data
export BASE_CKPT_DIR=YOUR_CHECKPOINT_DIR # directory of pretrained checkpoint
```

Download Stable Diffusion v2 [checkpoint](https://huggingface.co/sd2-community/stable-diffusion-2) into `${BASE_CKPT_DIR}`
Download Stable Diffusion v2 [checkpoint](https://huggingface.co/sd2-community/stable-diffusion-2-1) into `${BASE_CKPT_DIR}`

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🗄️ Data Integrity & Integration | 🟠 Major | ⚡ Quick win

Keep the downloaded checkpoint directory aligned with the training config.

config/model_sdv2.yaml still sets pretrained_path: stable-diffusion-2, and the trainer loads ${BASE_CKPT_DIR}/${pretrained_path}. Downloading the stable-diffusion-2-1 repository without renaming or symlinking it will make training fail to find the checkpoint. Update the config in the same change, or explicitly document the required target directory name here.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@README.md` at line 198, Align the checkpoint directory referenced by the
README download step with the training path configured in
config/model_sdv2.yaml: either update pretrained_path to stable-diffusion-2-1 or
document renaming/symlinking the downloaded repository to stable-diffusion-2
under BASE_CKPT_DIR. Ensure the trainer’s ${BASE_CKPT_DIR}/${pretrained_path}
lookup resolves successfully.


Download the checkpoint of [Depth-Anything-V2](https://github.com/DepthAnything/Depth-Anything-V2) into `DA2/checkpoints/`. Stage 1 uses the ViT-G checkpoint by default at `DA2/checkpoints/depth_anything_v2_vitg.pth` as the external semantic encoder.

Expand Down
Loading