File size: 6,730 Bytes
ea89207
b117bf8
 
 
 
 
 
 
 
 
ea89207
 
625e107
b117bf8
 
 
 
 
eb10f38
b117bf8
625e107
 
 
 
b117bf8
625e107
 
b117bf8
625e107
eb10f38
5bd3c75
ef32b94
625e107
 
eb10f38
625e107
 
 
 
 
 
 
 
5bd3c75
 
 
 
 
 
 
 
 
 
 
 
 
 
b117bf8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7e28125
b117bf8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9cec028
b117bf8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
---
language: 
  - en
thumbnail: ""
tags:
- painting
- anime
- stable-diffusion
- aiart
- text-to-image
license: creativeml-openrail-m
---
<center><img src="https://huggingface.co/DGSpitzer/DGSpitzer-Art-Diffusion/resolve/main/img/0Style-Girl.png" width="700" height="559"/></center>

![visitors](https://visitor-badge.glitch.me/badge?page_id=DGspitzer_Art_Diffusion)

# DGSpitzer Art Diffusion

DGSpitzer Art Diffusion is **a unique AI model that is trained to draw like my art style!**

Hello folks! This is DGSpitzer, I'm a game developer, music composer and digital artist based in New York, you can check out my artworks/games/etc at here:
[Games](https://helixngc7293.itch.io/) 
[Arts](https://www.artstation.com/helixngc7293) 
[Music](https://soundcloud.com/dgspitzer) 

I've been working on AI related stuff on my [Youtube  Channel](https://www.youtube.com/channel/UCzzsYBF4qwtMwJaPJZ5SuPg) 
 since 2020 , especially for colorizing old black & white footage using a series of AI technologies.

I always portrait artificial intelligence as an assist tool for extending my creativity. Nevertheless, whatever how powerful AI will be, us humans will be the leading role during the creative process as usual, and AI will provide suggestions / generate drafts as a helper.
In my opinion, there is huge potential to adapt AI into the modern-age digital artist's work pipeline, therefore I trained this AI model with my art style as an experiment to try it out! And **share it with you for free!**

All of the datasets (as the training images for building this AI model) is from my own digital paintings & game concept arts, no other artists’ names involved. I separated my artworks into detailed categories such as “outline”, “sketch”, “anime”, “landscape”. As a result, this AI model supports multiple keywords in prompt as different styles of mine!
The model is fine-tuned based on [Vintedois diffusion-v0-1 Model](https://huggingface.co/22h/vintedois-diffusion-v0-1/) though, but I totally overwrite the style of the vintedois diffusion model by using “arts”, “paintings” as keywords with my dataset during Dreambooth training.

**You are free to use/fine-tune this model even commercially as long as you follow the [CreativeML Open RAIL-M license](LICENSE).** Additionally, **you can use all my artworks as dataset in your training**, giving a credit should be nice ;P

It’s welcome to share your results using this model! Looking forward to creating something truly amazing!



<center><img src="https://huggingface.co/DGSpitzer/DGSpitzer-Art-Diffusion/resolve/main/img/1Style-Girl2.png" width="700" height="559"/></center>

<center><img src="https://huggingface.co/DGSpitzer/DGSpitzer-Art-Diffusion/resolve/main/img/2Style-Man.png" width="700" height="559"/></center>

<center><img src="https://huggingface.co/DGSpitzer/DGSpitzer-Art-Diffusion/resolve/main/img/3Style-Outline.png" width="700" height="559"/></center>

<center><img src="https://huggingface.co/DGSpitzer/DGSpitzer-Art-Diffusion/resolve/main/img/4Style-Anime.png" width="700" height="559"/></center>

<center><img src="https://huggingface.co/DGSpitzer/DGSpitzer-Art-Diffusion/resolve/main/img/5Style-Whiteshape.png" width="700" height="559"/></center>

<center><img src="https://huggingface.co/DGSpitzer/DGSpitzer-Art-Diffusion/resolve/main/img/6Style-Sketch.png" width="700" height="559"/></center>

<center><img src="https://huggingface.co/DGSpitzer/DGSpitzer-Art-Diffusion/resolve/main/img/7Style-Landscape.png" width="700" height="559"/></center>

<center><img src="https://huggingface.co/DGSpitzer/DGSpitzer-Art-Diffusion/resolve/main/img/8Style-Mech.png" width="700" height="559"/></center>


### 🧨 Diffusers

This repo contains both .ckpt and Diffuser model files. It's compatible to be used as any Stable Diffusion model, using standard [Stable Diffusion Pipelines](https://huggingface.co/docs/diffusers/api/pipelines/stable_diffusion).

You can convert this model to [ONNX](https://huggingface.co/docs/diffusers/optimization/onnx), [MPS](https://huggingface.co/docs/diffusers/optimization/mps) and/or [FLAX/JAX](https://huggingface.co/blog/stable_diffusion_jax).

```python example for loading the Diffuser
#!pip install diffusers transformers scipy torch
from diffusers import StableDiffusionPipeline
import torch

model_id = "DGSpitzer/DGSpitzer-Art-Diffusion"
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
pipe = pipe.to("cuda")

prompt = "dgspitzer painting of a beautiful mech girl, 4k, photorealistic"
image = pipe(prompt).images[0]

image.save("./dgspitzer_ai_art.png")
```

# Online Demo

You can try the Online Web UI demo build with [Gradio](https://github.com/gradio-app/gradio), or use Colab Notebook at here:

*My Online Space Demo*
[![Open In Spaces](https://camo.githubusercontent.com/00380c35e60d6b04be65d3d94a58332be5cc93779f630bcdfc18ab9a3a7d3388/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f25463025394625413425393725323048756767696e67253230466163652d5370616365732d626c7565)](https://huggingface.co/spaces/DGSpitzer/DGS-Diffusion-Space)

*Buy me a coffee if you like this project ;P ♥*
[![Buy me a coffee](https://badgen.net/badge/icon/Buy%20Me%20A%20Coffee?icon=buymeacoffee&label)](https://www.buymeacoffee.com/dgspitzer)


# **👇Model👇**

AI Model Weights available at huggingface: https://huggingface.co/DGSpitzer/DGSpitzer-Art-Diffusion


# Usage

After model loaded, use keyword **dgs** in your prompt, with **illustration style** to get even better results.

For sampler, use **Euler A** for the best result (**DDIM** kinda works too), CFG Scale 7, steps 20 should be fine

**Example 1:**

```
portrait of a girl in dgs illustration style, Anime girl, female soldier working in a cyberpunk city, cleavage, ((perfect femine face)), intricate, 8k, highly detailed, shy, digital painting, intense, sharp focus
```

For cyber robot male character, you can add **muscular male** to improve the output.

**Example 2:**

```
a photo of muscular beard soldier male in dgs illustration style, half-body, holding robot arms, strong chest
```

**Example 3 (with Stable Diffusion WebUI):**

If using [AUTOMATIC1111's Stable Diffusion WebUI](https://github.com/AUTOMATIC1111/stable-diffusion-webui)

You can simply use this as **prompt** with **Euler A** Sampler,  CFG Scale 7, steps 20, 704 x 704px output res:

```
an anime girl in dgs illustration style
```

And set the **negative prompt** as this to get cleaner face: 

```
out of focus, scary, creepy, evil, disfigured, missing limbs, ugly, gross, missing fingers
```

---

**NOTE: usage of this model implies accpetance of stable diffusion's [CreativeML Open RAIL-M license](LICENSE)**

---