Text-to-Image
Diffusers
English
xingpng commited on
Commit
79919ff
·
1 Parent(s): 747bf27

add readme

Browse files
Files changed (1) hide show
  1. README.md +7 -1
README.md CHANGED
@@ -15,7 +15,7 @@ license: apache-2.0
15
 
16
  <a href='https://csgo-gen.github.io/'><img src='https://img.shields.io/badge/Project-Page-green'></a>
17
  <a href='https://arxiv.org/abs/2408.16766'><img src='https://img.shields.io/badge/Technique-Report-red'></a>
18
- [![Hugging Face](https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-Space-red)](https://huggingface.co/spaces/InstantX/CSGO)
19
 
20
 
21
  </div>
@@ -106,6 +106,12 @@ git clone https://huggingface.co/InstanX/CSGO CSGO
106
  ```
107
  Our method is fully compatible with [SDXL](https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0), [VAE](https://huggingface.co/madebyollin/sdxl-vae-fp16-fix), [ControlNet](https://huggingface.co/TTPlanet/TTPLanet_SDXL_Controlnet_Tile_Realistic), and [Image Encoder](https://huggingface.co/h94/IP-Adapter/tree/main/sdxl_models/image_encoder).
108
  Please download them and place them in the ./base_models folder.
 
 
 
 
 
 
109
  ### 3. Inference 🚀
110
 
111
  ```python
 
15
 
16
  <a href='https://csgo-gen.github.io/'><img src='https://img.shields.io/badge/Project-Page-green'></a>
17
  <a href='https://arxiv.org/abs/2408.16766'><img src='https://img.shields.io/badge/Technique-Report-red'></a>
18
+ [![Hugging Face](https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-Models-blue)](https://huggingface.co/spaces/InstantX/CSGO)
19
 
20
 
21
  </div>
 
106
  ```
107
  Our method is fully compatible with [SDXL](https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0), [VAE](https://huggingface.co/madebyollin/sdxl-vae-fp16-fix), [ControlNet](https://huggingface.co/TTPlanet/TTPLanet_SDXL_Controlnet_Tile_Realistic), and [Image Encoder](https://huggingface.co/h94/IP-Adapter/tree/main/sdxl_models/image_encoder).
108
  Please download them and place them in the ./base_models folder.
109
+
110
+ tips:If you expect to load Controlnet directly using ControlNetPipeline as in CSGO, do the following:
111
+ ```bash
112
+ git clone https://huggingface.co/TTPlanet/TTPLanet_SDXL_Controlnet_Tile_Realistic
113
+ mv TTPLanet_SDXL_Controlnet_Tile_Realistic/TTPLANET_Controlnet_Tile_realistic_v2_fp16.safetensors TTPLanet_SDXL_Controlnet_Tile_Realistic/diffusion_pytorch_model.safetensors
114
+ ```
115
  ### 3. Inference 🚀
116
 
117
  ```python