Commit
·
425f904
1
Parent(s):
ec5e97e
Update README.md
Browse files
README.md
CHANGED
|
@@ -11,11 +11,13 @@ tags:
|
|
| 11 |
This model was converted to Core ML for use on Apple Silicon devices by following Apple's instructions [here](https://github.com/apple/ml-stable-diffusion#-converting-models-to-core-ml).<br>
|
| 12 |
Provide the model to an app such as [Mochi Diffusion](https://github.com/godly-devotion/MochiDiffusion) to generate images.<br>
|
| 13 |
|
| 14 |
-
`split_einsum`
|
| 15 |
-
`original`
|
| 16 |
|
| 17 |
# Anything V3
|
| 18 |
|
|
|
|
|
|
|
| 19 |
Welcome to Anything V3 - a latent diffusion model for weebs. This model is intended to produce high-quality, highly detailed anime style with just a few prompts. Like other anime-style Stable Diffusion models, it also supports danbooru tags to generate images.
|
| 20 |
|
| 21 |
e.g. **_1girl, white hair, golden eyes, beautiful eyes, detail, flower meadow, cumulonimbus clouds, lighting, detailed sky, garden_**
|
|
@@ -24,9 +26,7 @@ e.g. **_1girl, white hair, golden eyes, beautiful eyes, detail, flower meadow, c
|
|
| 24 |
|
| 25 |
We support a [Gradio](https://github.com/gradio-app/gradio) Web UI to run Anything-V3.0:
|
| 26 |
|
| 27 |
-
[Open in Spaces](https://huggingface.co/spaces/
|
| 28 |
-
|
| 29 |
-
|
| 30 |
|
| 31 |
## 🧨 Diffusers
|
| 32 |
|
|
@@ -39,8 +39,8 @@ You can also export the model to [ONNX](https://huggingface.co/docs/diffusers/op
|
|
| 39 |
from diffusers import StableDiffusionPipeline
|
| 40 |
import torch
|
| 41 |
|
| 42 |
-
model_id = "
|
| 43 |
-
branch_name= "diffusers"
|
| 44 |
|
| 45 |
pipe = StableDiffusionPipeline.from_pretrained(model_id, revision=branch_name, torch_dtype=torch.float16)
|
| 46 |
pipe = pipe.to("cuda")
|
|
@@ -56,19 +56,19 @@ image.save("./pikachu.png")
|
|
| 56 |
Below are some examples of images generated using this model:
|
| 57 |
|
| 58 |
**Anime Girl:**
|
| 59 |
-
.<br>
|
| 12 |
Provide the model to an app such as [Mochi Diffusion](https://github.com/godly-devotion/MochiDiffusion) to generate images.<br>
|
| 13 |
|
| 14 |
+
`split_einsum` versions are compatible with all compute units.<br>
|
| 15 |
+
`original` versions are only compatible with CPU & GPU.
|
| 16 |
|
| 17 |
# Anything V3
|
| 18 |
|
| 19 |
+
Sources: [Hugging Face](https://huggingface.co/Linaqruf/anything-v3.0) - [CivitAI](https://civitai.com/models/66/anything-v3)
|
| 20 |
+
|
| 21 |
Welcome to Anything V3 - a latent diffusion model for weebs. This model is intended to produce high-quality, highly detailed anime style with just a few prompts. Like other anime-style Stable Diffusion models, it also supports danbooru tags to generate images.
|
| 22 |
|
| 23 |
e.g. **_1girl, white hair, golden eyes, beautiful eyes, detail, flower meadow, cumulonimbus clouds, lighting, detailed sky, garden_**
|
|
|
|
| 26 |
|
| 27 |
We support a [Gradio](https://github.com/gradio-app/gradio) Web UI to run Anything-V3.0:
|
| 28 |
|
| 29 |
+
[Open in Spaces](https://huggingface.co/spaces/Maseshi/Anything-v3.0)
|
|
|
|
|
|
|
| 30 |
|
| 31 |
## 🧨 Diffusers
|
| 32 |
|
|
|
|
| 39 |
from diffusers import StableDiffusionPipeline
|
| 40 |
import torch
|
| 41 |
|
| 42 |
+
model_id = "Maseshi/Anything-v3.0"
|
| 43 |
+
branch_name = "diffusers"
|
| 44 |
|
| 45 |
pipe = StableDiffusionPipeline.from_pretrained(model_id, revision=branch_name, torch_dtype=torch.float16)
|
| 46 |
pipe = pipe.to("cuda")
|
|
|
|
| 56 |
Below are some examples of images generated using this model:
|
| 57 |
|
| 58 |
**Anime Girl:**
|
| 59 |
+

|
| 60 |
```
|
| 61 |
1girl, brown hair, green eyes, colorful, autumn, cumulonimbus clouds, lighting, blue sky, falling leaves, garden
|
| 62 |
Steps: 50, Sampler: DDIM, CFG scale: 12
|
| 63 |
```
|
| 64 |
**Anime Boy:**
|
| 65 |
+

|
| 66 |
```
|
| 67 |
1boy, medium hair, blonde hair, blue eyes, bishounen, colorful, autumn, cumulonimbus clouds, lighting, blue sky, falling leaves, garden
|
| 68 |
Steps: 50, Sampler: DDIM, CFG scale: 12
|
| 69 |
```
|
| 70 |
**Scenery:**
|
| 71 |
+

|
| 72 |
```
|
| 73 |
scenery, shibuya tokyo, post-apocalypse, ruins, rust, sky, skyscraper, abandoned, blue sky, broken window, building, cloud, crane machine, outdoors, overgrown, pillar, sunset
|
| 74 |
Steps: 50, Sampler: DDIM, CFG scale: 12
|