gaviego commited on
Commit
2bbacb7
1 Parent(s): 9e320c5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +77 -1
README.md CHANGED
@@ -1,3 +1,79 @@
1
  ---
2
- license: openrail
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: creativeml-openrail-m
3
+ tags:
4
+ - coreml
5
+ - stable-diffusion
6
+ - text-to-image
7
  ---
8
+ # Core ML Converted Model:
9
+
10
+ - This model was converted to Core ML for use on Apple Silicon devices. Instructions can be found [here](https://github.com/godly-devotion/MochiDiffusion/wiki/How-to-convert-ckpt-files-to-Core-ML).<br>
11
+ - Provide the model to an app such as [Mochi Diffusion](https://github.com/godly-devotion/MochiDiffusion) to generate images.<br>
12
+ - `split_einsum` version is compatible with all compute unit options including Neural Engine.<br>
13
+
14
+ # From the original authors detail about the model
15
+
16
+
17
+
18
+ # Gradio
19
+
20
+ We support a [Gradio](https://github.com/gradio-app/gradio) Web UI to run anything-v4.0:
21
+ [![Open In Spaces](https://camo.githubusercontent.com/00380c35e60d6b04be65d3d94a58332be5cc93779f630bcdfc18ab9a3a7d3388/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f25463025394625413425393725323048756767696e67253230466163652d5370616365732d626c7565)](https://huggingface.co/spaces/akhaliq/anything-v4.0)
22
+
23
+ ## 🧨 Diffusers
24
+
25
+ This model can be used just like any other Stable Diffusion model. For more information,
26
+ please have a look at the [Stable Diffusion](https://huggingface.co/docs/diffusers/api/pipelines/stable_diffusion).
27
+
28
+ You can also export the model to [ONNX](https://huggingface.co/docs/diffusers/optimization/onnx), [MPS](https://huggingface.co/docs/diffusers/optimization/mps) and/or [FLAX/JAX]().
29
+
30
+ ```python
31
+ from diffusers import StableDiffusionPipeline
32
+ import torch
33
+
34
+ model_id = "andite/anything-v4.0"
35
+ pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
36
+ pipe = pipe.to("cuda")
37
+
38
+ prompt = "hatsune_miku"
39
+ image = pipe(prompt).images[0]
40
+
41
+ image.save("./hatsune_miku.png")
42
+ ```
43
+
44
+ ## Examples
45
+
46
+ Below are some examples of images generated using this model:
47
+
48
+ **Anime Girl:**
49
+ ![Anime Girl](https://huggingface.co/andite/anything-v4.0/resolve/main/example-1.png)
50
+ ```
51
+ masterpiece, best quality, 1girl, white hair, medium hair, cat ears, closed eyes, looking at viewer, :3, cute, scarf, jacket, outdoors, streets
52
+ Steps: 20, Sampler: DPM++ 2M Karras, CFG scale: 7
53
+ ```
54
+ **Anime Boy:**
55
+ ![Anime Boy](https://huggingface.co/andite/anything-v4.0/resolve/main/example-2.png)
56
+ ```
57
+ 1boy, bishounen, casual, indoors, sitting, coffee shop, bokeh
58
+ Steps: 20, Sampler: DPM++ 2M Karras, CFG scale: 7
59
+ ```
60
+ **Scenery:**
61
+ ![Scenery](https://huggingface.co/andite/anything-v4.0/resolve/main/example-4.png)
62
+ ```
63
+ scenery, village, outdoors, sky, clouds
64
+ Steps: 50, Sampler: DPM++ 2S a Karras, CFG scale: 7
65
+ ```
66
+
67
+ ## License
68
+
69
+ This model is open access and available to all, with a CreativeML OpenRAIL-M license further specifying rights and usage.
70
+ The CreativeML OpenRAIL License specifies:
71
+
72
+ 1. You can't use the model to deliberately produce nor share illegal or harmful outputs or content
73
+ 2. The authors claims no rights on the outputs you generate, you are free to use them and are accountable for their use which must not go against the provisions set in the license
74
+ 3. You may re-distribute the weights and use the model commercially and/or as a service. If you do, please be aware you have to include the same use restrictions as the ones in the license and share a copy of the CreativeML OpenRAIL-M to all your users (please read the license entirely and carefully)
75
+ [Please read the full license here](https://huggingface.co/spaces/CompVis/stable-diffusion-license)
76
+
77
+ ## Big Thanks to
78
+
79
+ - [Linaqruf](https://huggingface.co/Linaqruf). [NoCrypt](https://huggingface.co/NoCrypt), and Fannovel16#9022 for helping me out alot regarding my inquiries and concern about models and other stuff.