Update README.md
Browse files
README.md
CHANGED
@@ -90,7 +90,7 @@ I'll explain the method of using code as the efficient way. First step is to dow
|
|
90 |
You can download the file manually or remotely, but I recommend you to use the remote one. Usually, VAE
|
91 |
files are in .safetensors format. There are two websites you can visit to download VAE. Those are HuggingFace
|
92 |
and [CivitAI](civitai.com).
|
93 |
-
|
94 |
This method is pretty straightforward. Pick any VAE's repository you like. Then, navigate to "Files" and
|
95 |
the VAE's file. Make sure to click the file.
|
96 |
|
@@ -146,7 +146,7 @@ vae = AutoencoderKL.from_single_file(
|
|
146 |
# use 'torch_dtype=torch.float16' for FP16.
|
147 |
# add 'subfolder="folder_name"' argument if the VAE is in specific folder.
|
148 |
```
|
149 |
-
|
150 |
It's trickier if the VAE is in [CivitAI](civitai.com), because you can't use
|
151 |
`from_single_file()` method. It only works for files inside HuggingFace and local files only. You can upload the VAE from there into
|
152 |
HuggingFace, but you must comply with the model's license before continuing. To solve this issue, you may
|
|
|
90 |
You can download the file manually or remotely, but I recommend you to use the remote one. Usually, VAE
|
91 |
files are in .safetensors format. There are two websites you can visit to download VAE. Those are HuggingFace
|
92 |
and [CivitAI](civitai.com).
|
93 |
+
### From HuggingFace 😊
|
94 |
This method is pretty straightforward. Pick any VAE's repository you like. Then, navigate to "Files" and
|
95 |
the VAE's file. Make sure to click the file.
|
96 |
|
|
|
146 |
# use 'torch_dtype=torch.float16' for FP16.
|
147 |
# add 'subfolder="folder_name"' argument if the VAE is in specific folder.
|
148 |
```
|
149 |
+
### From CivitAI 🇨
|
150 |
It's trickier if the VAE is in [CivitAI](civitai.com), because you can't use
|
151 |
`from_single_file()` method. It only works for files inside HuggingFace and local files only. You can upload the VAE from there into
|
152 |
HuggingFace, but you must comply with the model's license before continuing. To solve this issue, you may
|