lycui commited on
Commit
e487d03
·
verified ·
1 Parent(s): 4cd2a3a

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +48 -0
README.md ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - champ
5
+ ---
6
+
7
+ # Model Sources
8
+
9
+ <!-- Provide the basic links for the model. -->
10
+
11
+ - **Repository:** [zju3dv/CFSynthesis](https://github.com/zju3dv/CFSynthesis)
12
+ - **Paper:** [https://arxiv.org/abs/2412.11067](https://arxiv.org/abs/2412.11067)
13
+
14
+ # Directory Structure
15
+
16
+ ```shell
17
+ ./PROJECT_ROOT/
18
+ |-- ckpts # Champ Model
19
+ | |-- denoising_unet.pth
20
+ | |-- guidance_encoder_depth.pth
21
+ | |-- guidance_encoder_dwpose.pth
22
+ | |-- guidance_encoder_normal.pth
23
+ | |-- guidance_encoder_semantic_map.pth
24
+ | |-- reference_unet.pth
25
+ |-- image_encoder
26
+ | |-- config.json
27
+ | `-- pytorch_model.bin
28
+ |-- sd-vae-ft-mse
29
+ | |-- config.json
30
+ | |-- diffusion_pytorch_model.bin
31
+ | `-- diffusion_pytorch_model.safetensors
32
+ `-- stable-diffusion-v1-5
33
+ |-- feature_extractor
34
+ | `-- preprocessor_config.json
35
+ |-- model_index.json
36
+ |-- unet
37
+ | |-- config.json
38
+ | `-- diffusion_pytorch_model.bin
39
+ `-- v1-inference.yaml
40
+ ```
41
+
42
+ # Reference
43
+
44
+ Thanks to the following projects and authors:
45
+
46
+ * [1] [runwayml](https://huggingface.co/runwayml). [Stable Diffusion v1-5](https://huggingface.co/runwayml/stable-diffusion-v1-5).
47
+ * [2] [stabilityai](https://huggingface.co/stabilityai). [sd-vae-ft-mse](https://huggingface.co/stabilityai/sd-vae-ft-mse)
48
+ * [3] [bdsqlsz](https://huggingface.co/bdsqlsz). [image_encoder](https://huggingface.co/bdsqlsz/image_encoder)