WarriorMama777
commited on
Commit
β’
b57eade
1
Parent(s):
143ed82
Add How to Batch Download (Advanced)
Browse files
README.md
CHANGED
@@ -41,7 +41,8 @@ We support a [Gradio](https://github.com/gradio-app/gradio) Web UI to run Orange
|
|
41 |
- [Disclaimer](#disclaimer)
|
42 |
- [How to download](#how-to-download)
|
43 |
- [Batch Download](#batch-download)
|
44 |
-
- [
|
|
|
45 |
- [Model Detail \& Merge Recipes](#model-detail--merge-recipes)
|
46 |
- [AbyssOrangeMix3 (AOM3)](#abyssorangemix3-aom3)
|
47 |
- [AOM3](#aom3)
|
@@ -125,7 +126,40 @@ git clone https://huggingface.co/WarriorMama777/OrangeMixs
|
|
125 |
|
126 |
4. complete
|
127 |
|
128 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
|
130 |
1. Go to the Files and vaersions tab.
|
131 |
2. select the model you want to download
|
@@ -185,7 +219,9 @@ Features: Oil paintings like style artistic illustrations and stylish background
|
|
185 |
|
186 |
Features: Midpoint of artistic and kawaii. the model has been tuned to combine realistic textures, a artistic style that also feels like an oil colour style, and a cute anime-style face. Can be used to create a wide range of illustrations.
|
187 |
|
188 |
-
In addition, these U-Net Blocks Weight Merge models take numerous steps but are carefully merged to ensure that mutual content is not overwritten.
|
|
|
|
|
189 |
|
190 |
|
191 |
|
@@ -236,21 +272,21 @@ EB4099BA9CD5E69AB526FCA22A2E967F286F8512D9509B735C892FA6468767CF
|
|
236 |
|
237 |
1. AOM2sfw
|
238 |
γ038ba203d8ba3c8af24f14e01fbb870c85bbb8d4b6d9520804828f4193d12ce9γ
|
239 |
-
|
240 |
[2700c435]γ543bcbc21294831c6245cd74c8a7707761e28812c690f946cb81fef930d54b5eγ
|
241 |
-
|
242 |
[925997e9]γ89d59c3dde4c56c6d5c41da34cc55ce479d93b4007046980934b14db71bdb2a8γ
|
243 |
-
|
244 |
[1d4a34af]γ22fa233c2dfd7748d534be603345cb9abf994a23244dfdfc1013f4f90322fecaγ
|
245 |
-
|
246 |
[25396b85]γ893cca5903ccd0519876f58f4bc188dd8fcc5beb8a69c1a3f1a5fe314bb573f5γ
|
247 |
-
|
248 |
γbbf07e3a1c3482c138d096f7dcdb4581a2aa573b74a68ba0906c7b657942f1c2γ
|
249 |
-
|
250 |
γ4b3bf0860b7f372481d0b6ac306fed43b0635caf8aa788e28b32377675ce7630γ
|
251 |
-
|
252 |
γ71e703a0fca0e284dd9868bca3ce63c64084db1f0d68835f0a31e1f4e5b7cca6γ
|
253 |
-
|
254 |
γ3b3982f3aaeaa8af3639a19001067905e146179b6cddf2e3b34a474a0acae7faγ
|
255 |
|
256 |
----
|
|
|
41 |
- [Disclaimer](#disclaimer)
|
42 |
- [How to download](#how-to-download)
|
43 |
- [Batch Download](#batch-download)
|
44 |
+
- [Batch Download (Advanced)](#batch-download-advanced)
|
45 |
+
- [Select and download](#select-and-download)
|
46 |
- [Model Detail \& Merge Recipes](#model-detail--merge-recipes)
|
47 |
- [AbyssOrangeMix3 (AOM3)](#abyssorangemix3-aom3)
|
48 |
- [AOM3](#aom3)
|
|
|
126 |
|
127 |
4. complete
|
128 |
|
129 |
+
|
130 |
+
## Batch Download (Advanced)
|
131 |
+
|
132 |
+
Advanced: (if you only want to download selected directories, not the entire repository).
|
133 |
+
|
134 |
+
1. Run the command `git clone --filter=tree:0 --no-checkout https://huggingface.co/WarriorMama777/OrangeMixs` to clone the huggingface repository. By adding the `--filter=tree:0` and `--no-checkout` options, you can download only the file names without their contents.
|
135 |
+
```
|
136 |
+
git clone --filter=tree:0 --no-checkout https://huggingface.co/WarriorMama777/OrangeMixs
|
137 |
+
```
|
138 |
+
|
139 |
+
1. Move to the cloned directory with the command `cd OrangeMixs`.
|
140 |
+
```
|
141 |
+
cd OrangeMixs
|
142 |
+
```
|
143 |
+
|
144 |
+
1. Enable sparse-checkout mode with the command `git sparse-checkout init --cone`. By adding the `--cone` option, you can achieve faster performance.
|
145 |
+
```
|
146 |
+
git sparse-checkout init --cone
|
147 |
+
```
|
148 |
+
|
149 |
+
1. Specify the directory you want to get with the command `git sparse-checkout add <directory name>`. For example, if you want to get only the `Models/AbyssOrangeMix3` directory, enter `git sparse-checkout add Models/AbyssOrangeMix3`.
|
150 |
+
```
|
151 |
+
git sparse-checkout add Models/AbyssOrangeMix3
|
152 |
+
```
|
153 |
+
|
154 |
+
1. Download the contents of the specified directory with the command `git checkout main`.
|
155 |
+
```
|
156 |
+
git checkout main
|
157 |
+
```
|
158 |
+
|
159 |
+
This completes how to clone only a specific directory. If you want to add other directories, run `git sparse-checkout add <directory name>` again.
|
160 |
+
|
161 |
+
|
162 |
+
## Select and download
|
163 |
|
164 |
1. Go to the Files and vaersions tab.
|
165 |
2. select the model you want to download
|
|
|
219 |
|
220 |
Features: Midpoint of artistic and kawaii. the model has been tuned to combine realistic textures, a artistic style that also feels like an oil colour style, and a cute anime-style face. Can be used to create a wide range of illustrations.
|
221 |
|
222 |
+
In addition, these U-Net Blocks Weight Merge models take numerous steps but are carefully merged to ensure that mutual content is not overwritten.
|
223 |
+
(Of course, all models can switch between SFW/NSFW with a single prompt "NSFW")
|
224 |
+
|
225 |
|
226 |
|
227 |
|
|
|
272 |
|
273 |
1. AOM2sfw
|
274 |
γ038ba203d8ba3c8af24f14e01fbb870c85bbb8d4b6d9520804828f4193d12ce9γ
|
275 |
+
1. AnythingV3.0 huggingface pruned
|
276 |
[2700c435]γ543bcbc21294831c6245cd74c8a7707761e28812c690f946cb81fef930d54b5eγ
|
277 |
+
1. NovelAI animefull-final-pruned
|
278 |
[925997e9]γ89d59c3dde4c56c6d5c41da34cc55ce479d93b4007046980934b14db71bdb2a8γ
|
279 |
+
1. NovelAI sfw
|
280 |
[1d4a34af]γ22fa233c2dfd7748d534be603345cb9abf994a23244dfdfc1013f4f90322fecaγ
|
281 |
+
1. Gape60
|
282 |
[25396b85]γ893cca5903ccd0519876f58f4bc188dd8fcc5beb8a69c1a3f1a5fe314bb573f5γ
|
283 |
+
1. BasilMix
|
284 |
γbbf07e3a1c3482c138d096f7dcdb4581a2aa573b74a68ba0906c7b657942f1c2γ
|
285 |
+
1. chilloutmix_fp16.safetensors
|
286 |
γ4b3bf0860b7f372481d0b6ac306fed43b0635caf8aa788e28b32377675ce7630γ
|
287 |
+
1. Counterfeit-V2.5_fp16.safetensors
|
288 |
γ71e703a0fca0e284dd9868bca3ce63c64084db1f0d68835f0a31e1f4e5b7cca6γ
|
289 |
+
1. kenshi_01_fp16.safetensors
|
290 |
γ3b3982f3aaeaa8af3639a19001067905e146179b6cddf2e3b34a474a0acae7faγ
|
291 |
|
292 |
----
|