leeway.zlw
commited on
Commit
·
a733499
1
Parent(s):
c9eaa66
docs: add directory structure introduction
Browse files
README.md
CHANGED
|
@@ -9,7 +9,36 @@ license: apache-2.0
|
|
| 9 |
- **Repository:** [fudan-generative-ai/champ](https://github.com/fudan-generative-vision/champ)
|
| 10 |
- **Paper:** [https://arxiv.org/abs/2403.14781](https://arxiv.org/abs/2403.14781)
|
| 11 |
|
| 12 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
|
| 14 |
Thanks to the following projects and authors:
|
| 15 |
|
|
|
|
| 9 |
- **Repository:** [fudan-generative-ai/champ](https://github.com/fudan-generative-vision/champ)
|
| 10 |
- **Paper:** [https://arxiv.org/abs/2403.14781](https://arxiv.org/abs/2403.14781)
|
| 11 |
|
| 12 |
+
# Directory Structure
|
| 13 |
+
|
| 14 |
+
```shell
|
| 15 |
+
./PROJECT_ROOT/
|
| 16 |
+
|-- champ # Champ Model
|
| 17 |
+
| |-- denoising_unet.pth
|
| 18 |
+
| |-- guidance_encoder_depth.pth
|
| 19 |
+
| |-- guidance_encoder_dwpose.pth
|
| 20 |
+
| |-- guidance_encoder_normal.pth
|
| 21 |
+
| |-- guidance_encoder_semantic_map.pth
|
| 22 |
+
| |-- reference_unet.pth
|
| 23 |
+
| `-- motion_module.pth
|
| 24 |
+
|-- image_encoder
|
| 25 |
+
| |-- config.json
|
| 26 |
+
| `-- pytorch_model.bin
|
| 27 |
+
|-- sd-vae-ft-mse
|
| 28 |
+
| |-- config.json
|
| 29 |
+
| |-- diffusion_pytorch_model.bin
|
| 30 |
+
| `-- diffusion_pytorch_model.safetensors
|
| 31 |
+
`-- stable-diffusion-v1-5
|
| 32 |
+
|-- feature_extractor
|
| 33 |
+
| `-- preprocessor_config.json
|
| 34 |
+
|-- model_index.json
|
| 35 |
+
|-- unet
|
| 36 |
+
| |-- config.json
|
| 37 |
+
| `-- diffusion_pytorch_model.bin
|
| 38 |
+
`-- v1-inference.yaml
|
| 39 |
+
```
|
| 40 |
+
|
| 41 |
+
# Reference
|
| 42 |
|
| 43 |
Thanks to the following projects and authors:
|
| 44 |
|