brushpenbob commited on
Commit
ac399eb
·
verified ·
1 Parent(s): 150bc1d

Upload folder using huggingface_hub

Browse files
Files changed (5) hide show
  1. 23409233.jpeg +0 -0
  2. 23409234.jpeg +0 -0
  3. 23410932.jpeg +0 -0
  4. 4art_style.safetensors +3 -0
  5. README.md +72 -0
23409233.jpeg ADDED
23409234.jpeg ADDED
23410932.jpeg ADDED
4art_style.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5bf6c18606e75a46c8d95186bda4c2954edee31bfa53474286d8a1988bd18a6d
3
+ size 228458756
README.md ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ license_name: bespoke-lora-trained-license
4
+ license_link: https://multimodal.art/civitai-licenses?allowNoCredit=False&allowCommercialUse=RentCivit&allowDerivatives=False&allowDifferentLicense=False
5
+ tags:
6
+ - text-to-image
7
+ - stable-diffusion
8
+ - lora
9
+ - diffusers
10
+ - template:sd-lora
11
+ - migrated
12
+ - style
13
+ - split
14
+ - split style
15
+ - splitstyle
16
+
17
+ base_model: stabilityai/stable-diffusion-xl-base-1.0
18
+ instance_prompt: splitstyle
19
+ widget:
20
+ - text: ' '
21
+
22
+ output:
23
+ url: >-
24
+ 23409234.jpeg
25
+ - text: ' '
26
+
27
+ output:
28
+ url: >-
29
+ 23410932.jpeg
30
+ - text: ' '
31
+
32
+ output:
33
+ url: >-
34
+ 23409233.jpeg
35
+
36
+ ---
37
+
38
+ # 4art style
39
+
40
+ <Gallery />
41
+
42
+
43
+
44
+
45
+
46
+ ## Model description
47
+
48
+ <p>First attempt at creating a LoRa that recruits for different traditional art styles. Trained on close-up portraits. Might take a bit more tinkering as it tends to just have two panels instead of four. anyway while i work out the bugs enjoy </p>
49
+
50
+ ## Trigger words
51
+ You should use `splitstyle`, `evang`, `split_style` to trigger the image generation.
52
+
53
+
54
+ ## Download model
55
+
56
+ Weights for this model are available in Safetensors format.
57
+
58
+ [Download](/brushpenbob/4art-style/tree/main) them in the Files & versions tab.
59
+
60
+ ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
61
+
62
+ ```py
63
+ from diffusers import AutoPipelineForText2Image
64
+ import torch
65
+
66
+ pipeline = AutoPipelineForText2Image.from_pretrained('stabilityai/stable-diffusion-xl-base-1.0', torch_dtype=torch.float16).to('cuda')
67
+ pipeline.load_lora_weights('brushpenbob/4art-style', weight_name='4art_style.safetensors')
68
+ image = pipeline('`splitstyle`, `evang`, `split_style`').images[0]
69
+ ```
70
+
71
+ 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)
72
+