Commit
•
8c0d7cf
1
Parent(s):
5a08f41
Upload folder using huggingface_hub
Browse files- 4430155.jpeg +0 -0
- 4430161.jpeg +0 -0
- 4430175.jpeg +0 -0
- 4430178.jpeg +0 -0
- 4430181.jpeg +0 -0
- EnvyAnimeDigitalPaintingXL01.safetensors +3 -0
- README.md +78 -0
4430155.jpeg
ADDED
4430161.jpeg
ADDED
4430175.jpeg
ADDED
4430178.jpeg
ADDED
4430181.jpeg
ADDED
EnvyAnimeDigitalPaintingXL01.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:109ebf360aa04ad6a7d914f82c985585730ff30cb0c5a3323e423976d9aafd5e
|
3 |
+
size 46702160
|
README.md
ADDED
@@ -0,0 +1,78 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: other
|
3 |
+
license_name: bespoke-lora-trained-license
|
4 |
+
license_link: https://multimodal.art/civitai-licenses?allowNoCredit=True&allowCommercialUse=Sell&allowDerivatives=True&allowDifferentLicense=True
|
5 |
+
tags:
|
6 |
+
- text-to-image
|
7 |
+
- stable-diffusion
|
8 |
+
- lora
|
9 |
+
- diffusers
|
10 |
+
- template:sd-lora
|
11 |
+
- anime
|
12 |
+
- digital art
|
13 |
+
- architecture
|
14 |
+
- digital painting
|
15 |
+
- scenery
|
16 |
+
- style
|
17 |
+
- woman
|
18 |
+
- stylizied
|
19 |
+
|
20 |
+
base_model: stabilityai/stable-diffusion-xl-base-1.0
|
21 |
+
instance_prompt:
|
22 |
+
widget:
|
23 |
+
- text: 'scifi, Astral scifi city at the beginning of the universe'
|
24 |
+
output:
|
25 |
+
url: >-
|
26 |
+
4430161.jpeg
|
27 |
+
- text: 'chinatown in a techno-optimist scifi megastructure at the end of the universe, masterpiece'
|
28 |
+
output:
|
29 |
+
url: >-
|
30 |
+
4430155.jpeg
|
31 |
+
- text: '2010s anime style digital painting, 1boy, man, ruggedly handsome, greenhouse in a gargantuan scifi megastructure beyond the beginning of time, masterpiece'
|
32 |
+
output:
|
33 |
+
url: >-
|
34 |
+
4430175.jpeg
|
35 |
+
- text: 'scifi, Empyrean,mysterious scifi city outside of reality'
|
36 |
+
output:
|
37 |
+
url: >-
|
38 |
+
4430178.jpeg
|
39 |
+
- text: 'scifi, reclaimed abandoned factory in a great,amazing scifi arcology outside of reality, masterpiece'
|
40 |
+
output:
|
41 |
+
url: >-
|
42 |
+
4430181.jpeg
|
43 |
+
|
44 |
+
---
|
45 |
+
|
46 |
+
# Envy Anime Digital Painting XL 01
|
47 |
+
|
48 |
+
<Gallery />
|
49 |
+
|
50 |
+
|
51 |
+
|
52 |
+
([CivitAI](https://civitai.com/models/230472))
|
53 |
+
|
54 |
+
## Model description
|
55 |
+
|
56 |
+
<p>A highly heavily stylized anime/western fusion digital painting style for anime checkpoints that won't change your content too much.</p>
|
57 |
+
|
58 |
+
|
59 |
+
|
60 |
+
## Download model
|
61 |
+
|
62 |
+
Weights for this model are available in Safetensors format.
|
63 |
+
|
64 |
+
[Download](/e-n-v-y/envy-anime-digital-painting-xl-01/tree/main) them in the Files & versions tab.
|
65 |
+
|
66 |
+
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
|
67 |
+
|
68 |
+
```py
|
69 |
+
from diffusers import AutoPipelineForText2Image
|
70 |
+
import torch
|
71 |
+
|
72 |
+
pipeline = AutoPipelineForText2Image.from_pretrained('stabilityai/stable-diffusion-xl-base-1.0', torch_dtype=torch.float16).to('cuda')
|
73 |
+
pipeline.load_lora_weights('e-n-v-y/envy-anime-digital-painting-xl-01', weight_name='EnvyAnimeDigitalPaintingXL01.safetensors')
|
74 |
+
image = pipeline('scifi, reclaimed abandoned factory in a great,amazing scifi arcology outside of reality, masterpiece').images[0]
|
75 |
+
```
|
76 |
+
|
77 |
+
For more details, including weighting, merging and fusing LoRAs, check the [documentation on loading LoRAs in diffusers](https://huggingface.co/docs/diffusers/main/en/using-diffusers/loading_adapters)
|
78 |
+
|