CoolFace
Modelpublic

nitrosocke/Arcane-Diffusion

sourceHugging Facecreativeml-openrail-mupdated 3y agoView on Hugging Face
755likes1kdownloads
README.md58 linesDownload Raw Back to root
1---2license: creativeml-openrail-m3tags:4- stable-diffusion5- text-to-image6---7# Arcane Diffusion8This is the fine-tuned Stable Diffusion model trained on images from the TV Show Arcane.9Use the tokens **_arcane style_** in your prompts for the effect.10 11**If you enjoy my work, please consider supporting me** 12[![Become A Patreon](https://badgen.net/badge/become/a%20patron/F96854)](https://patreon.com/user?u=79196446)13 14### 🧨 Diffusers15 16This model can be used just like any other Stable Diffusion model. For more information,17please have a look at the [Stable Diffusion](https://huggingface.co/docs/diffusers/api/pipelines/stable_diffusion).18 19You 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]().20 21```python22#!pip install diffusers transformers scipy torch23from diffusers import StableDiffusionPipeline24import torch25 26model_id = "nitrosocke/Arcane-Diffusion"27pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)28pipe = pipe.to("cuda")29 30prompt = "arcane style, a magical princess with golden hair"31image = pipe(prompt).images[0]32 33image.save("./magical_princess.png")34```35 36# Gradio & Colab37 38We also support a [Gradio](https://github.com/gradio-app/gradio) Web UI and Colab with Diffusers to run fine-tuned Stable Diffusion models:39[![Open In Spaces](https://camo.githubusercontent.com/00380c35e60d6b04be65d3d94a58332be5cc93779f630bcdfc18ab9a3a7d3388/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f25463025394625413425393725323048756767696e67253230466163652d5370616365732d626c7565)](https://huggingface.co/spaces/anzorq/finetuned_diffusion)40[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/1j5YvfMZoGdDGdj3O3xRU1m4ujKYsElZO?usp=sharing)41 42![img](https://huggingface.co/nitrosocke/Arcane-Diffusion/resolve/main/magical_princess.png)43 44### Sample images from v3:45![output Samples v3](https://huggingface.co/nitrosocke/Arcane-Diffusion/resolve/main/arcane-v3-samples-01.jpg)46![output Samples v3](https://huggingface.co/nitrosocke/Arcane-Diffusion/resolve/main/arcane-v3-samples-02.jpg)47### Sample images from the model:48![output Samples](https://huggingface.co/nitrosocke/Arcane-Diffusion/resolve/main/arcane-diffusion-output-images.jpg)49### Sample images used for training:50![Training Samples](https://huggingface.co/nitrosocke/Arcane-Diffusion/resolve/main/arcane-diffusion-training-images.jpg)51 52**Version 3** (arcane-diffusion-v3): This version uses the new _train-text-encoder_ setting and improves the quality and edibility of the model immensely. Trained on 95 images from the show in 8000 steps.53 54**Version 2** (arcane-diffusion-v2): This uses the diffusers based dreambooth training and prior-preservation loss is way more effective. The diffusers where then converted with a script to a ckpt file in order to work with automatics repo.55Training was done with 5k steps for a direct comparison to v1 and results show that it needs more steps for a more prominent result. Version 3 will be tested with 11k steps.56 57**Version 1** (arcane-diffusion-5k): This model was trained using _Unfrozen Model Textual Inversion_ utilizing the _Training with prior-preservation loss_ methods. There is still a slight shift towards the style, while not using the arcane token.58