File size: 2,971 Bytes
dc2af23
 
85e70be
 
 
3577669
 
 
 
 
7b6de3e
 
6cc29bc
390c523
4d16d17
ff35288
 
390c523
 
 
d3d9e17
390c523
d3d9e17
5f804b1
d3d9e17
390c523
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d3d9e17
 
 
 
 
 
 
 
0a8b6df
 
d3d9e17
0a8b6df
 
 
 
d3d9e17
 
0a8b6df
 
 
 
d3d9e17
 
390c523
e3e151d
390c523
e3e151d
d3d9e17
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
---
license: creativeml-openrail-m
language:
- en
pipeline_tag: text-to-image
tags:
- stable-diffusion
- stable-diffusion-diffusers
- text-to-image
- diffusers
- aiart
- anime
---

<center><img src="https://huggingface.co/TheRafal/everything-v1/resolve/main/1.png" width="768" height="768"/></center>

![visitors](https://visitor-badge.glitch.me/badge?page_id=everything-v1&left_color=red) 

----

# Everything V1
Everything V1 is a fine-tuned model based on Anything V3. It was trained using Dreambooth. Like other anime-style Stable Diffusion models, it also supports danbooru tags to generate images.

e.g. **_1girl, white hair, blue eyes, cat ears, outdoors, city_** 

----

# Table of Contents
(TODO)

----

# License

This model is open access and available to all, with a CreativeML OpenRAIL-M license further specifying rights and usage.
The CreativeML OpenRAIL License specifies: 

1. You can't use the model to deliberately produce nor share illegal or harmful outputs or content 
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
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)
[Please read the full license here](https://huggingface.co/spaces/CompVis/stable-diffusion-license)

# Terms of use

- **Clearly indicate where modifications have been made.**  
If you used it for merging, please state what steps you took to do so.

----

# How to download

## Batch download

1. Install Git
2. Create a folder of your choice and right click → "Git bash here" and open a gitbash on the folder's directory.
3. Run the following commands in order.

```
git lfs install
git clone https://huggingface.co/TheRafal/everything-v1
```

4. Complete

## Select and download

1. Go to the Files tab.
2. Select the model you want to download
3. Download
4. Complete

----

# Diffusers

This model can be used just like any other Stable Diffusion model. For more information,
please have a look at the [Stable Diffusion](https://huggingface.co/docs/diffusers/api/pipelines/stable_diffusion).

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]().

```python
import torch
from torch import autocast
from diffusers import StableDiffusionPipeline

pipe = StableDiffusionPipeline.from_pretrained(
    'TheRafal/everything-v1',
    torch_dtype=torch.float32
).to('cuda')

prompt = "1girl, monika \(doki doki literature club\)"
with autocast("cuda"):
    image = pipe(prompt, guidance_scale=6)["sample"][0]  
    
image.save("test.png")
```

----

# Model details

(TODO)