đ Everything V1
Everything V1 is a fine - tuned model based on Anything V3. It can generate images using danbooru tags, similar to other anime - style Stable Diffusion models. This provides users with a powerful tool for creating diverse anime - themed images.

đ Quick Start
This section will guide you through the basic steps of using the Everything V1 model, from downloading to running code examples.
⨠Features
- Fine - tuned Model: Based on Anything V3, offering enhanced performance.
- Danbooru Tag Support: Allows users to use danbooru tags for image generation.
- Multiple Download Methods: Supports both batch and selective downloads.
- Diffusers Compatibility: Can be used like other Stable Diffusion models and exported to ONNX or MPS.
đĻ Installation
Batch download
- Install Git.
- Create a folder of your choice and right - click â "Git bash here" to open a gitbash in the folder's directory.
- Run the following commands in order:
git lfs install
git clone https://huggingface.co/TheRafal/everything-v1
- Installation is complete.
Select and download
- Go to the Files and versions tab.
- Select the model you want to download.
- Download the selected model.
- Installation is complete.
đģ Usage Examples
Basic Usage
This model can be used just like any other Stable Diffusion model. You can also export the model to ONNX or MPS.
import torch
from torch import autocast
from diffusers import StableDiffusionPipeline
pipe = StableDiffusionPipeline.from_pretrained('TheRafal/everything-v1', torch_dtype=torch.float32).to('cuda')
prompt = "masterpiece, 1girl, blonde hair, blue eyes, colorful, cumulonimbus clouds, lighting, short hair, city, hoodie, night"
with autocast("cuda"):
image = pipe(prompt, num_inference_steps=50, guidance_scale=7.5)["images"][0]
image.save(prompt.replace(" ", "_") + ".png")
SHOW IMAGE
Anime Girl:

Advanced Usage
Below are some examples of images generated using this model, showing different styles and settings:
SHOW IMAGES
Anime Girl:

1girl, red hair, blue eyes, short hair, jacket, winter clothes, scarf, outdoors, tokyo \(city\), snow, snowing, gloves, pants, looking at viewer, cowboy shot
Steps: 50, Sampler: DPM++ 2M Karras, CFG scale: 7, Seed: 2436148258, Size: 768x768
Anime Boy:

1boy, black hair, green eyes, bishounen, casual, indoors, sitting, coffee shop, sitting, bokeh
Steps: 50, Sampler: DPM++ 2M Karras, CFG scale: 7, Seed: 4225599226, Size: 768x768
đ 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:
- You can't use the model to deliberately produce nor share illegal or harmful outputs or content.
- The authors claim 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.
- 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
Property |
Details |
Model Type |
Fine - tuned Stable Diffusion model based on Anything V3 |
Training Method |
Trained using Dreambooth and merged using Merge Block Weighted |
Pipeline Tag |
text - to - image |
Tags |
stable - diffusion, stable - diffusion - diffusers, text - to - image, image - to - image, diffusers, aiart, anime |
License |
CreativeML OpenRAIL - M |