Akimitsujiro commited on
Commit
1b07442
1 Parent(s): b8187f0

Upload folder using huggingface_hub

Browse files
Files changed (3) hide show
  1. 9427122.jpeg +3 -0
  2. 9427123.jpeg +3 -0
  3. README.md +46 -17
9427122.jpeg ADDED

Git LFS Details

  • SHA256: 45ce138db33735fb0e7f9bc0ba85667784f9ff0a44d1e975b1a86e9ee918978a
  • Pointer size: 131 Bytes
  • Size of remote file: 538 kB
9427123.jpeg ADDED

Git LFS Details

  • SHA256: 4bc8ae6f2fd4f246f7ecded2c2f2791a14b35761be81da472ba11b76121e5b03
  • Pointer size: 131 Bytes
  • Size of remote file: 484 kB
README.md CHANGED
@@ -1,38 +1,67 @@
1
  ---
 
 
 
2
  tags:
3
  - text-to-image
4
  - stable-diffusion
5
  - lora
6
  - diffusers
7
  - template:sd-lora
8
- widget:
9
- - text: >-
10
- 1boy, male_focus, solo, earrings, jewelry, red_eyes, gloves, blue_hair,
11
- fur_trim, blood, mask, open_mouth, smile, hair_between_eyes, black_gloves,
12
- coat, upper_body, teeth, holding, bangs, fur-trimmed_coat, blue_shirt,
13
- short_hair, sidelocks, shirt, artist_name, single_earring, mask_removed
14
- parameters:
15
- negative_prompt: >-
16
- worst quality, large head, low quality, extra digits, bad eye,
17
- EasyNegativeV2, ng_deepnegative_v1_75t
18
- output:
19
- url: images/1000092456.webp
20
  base_model: runwayml/stable-diffusion-v1-5
21
  instance_prompt: 1boy
22
- license: creativeml-openrail-m
 
 
 
 
 
 
 
 
 
 
 
23
  ---
24
- # Dottore
 
25
 
26
  <Gallery />
27
 
28
 
29
- ## Trigger words
30
 
31
- You should use `1boy` to trigger the image generation.
32
 
33
 
 
 
 
 
 
 
 
 
34
  ## Download model
35
 
36
  Weights for this model are available in Safetensors format.
37
 
38
- [Download](/Akimitsujiro/Dottore-Genshin-impact/tree/main) them in the Files & versions tab.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: other
3
+ license_name: bespoke-lora-trained-license
4
+ license_link: https://multimodal.art/civitai-licenses?allowNoCredit=True&allowCommercialUse=Image&allowDerivatives=True&allowDifferentLicense=True
5
  tags:
6
  - text-to-image
7
  - stable-diffusion
8
  - lora
9
  - diffusers
10
  - template:sd-lora
11
+ - migrated
12
+ - character
13
+ - genshin impact
14
+ - male
15
+ - dottore
16
+
 
 
 
 
 
 
17
  base_model: runwayml/stable-diffusion-v1-5
18
  instance_prompt: 1boy
19
+ widget:
20
+ - text: ' '
21
+
22
+ output:
23
+ url: >-
24
+ 9427122.jpeg
25
+ - text: ' '
26
+
27
+ output:
28
+ url: >-
29
+ 9427123.jpeg
30
+
31
  ---
32
+
33
+ # Dottore ( Genshin Impact)
34
 
35
  <Gallery />
36
 
37
 
 
38
 
 
39
 
40
 
41
+ ## Model description
42
+
43
+
44
+
45
+ ## Trigger words
46
+ You should use `1boy`, `Genshin Impact`, `Dottore ` to trigger the image generation.
47
+
48
+
49
  ## Download model
50
 
51
  Weights for this model are available in Safetensors format.
52
 
53
+ [Download](/Akimitsujiro/dottore-genshin-impact/tree/main) them in the Files & versions tab.
54
+
55
+ ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
56
+
57
+ ```py
58
+ from diffusers import AutoPipelineForText2Image
59
+ import torch
60
+
61
+ pipeline = AutoPipelineForText2Image.from_pretrained('runwayml/stable-diffusion-v1-5', torch_dtype=torch.float16).to('cuda')
62
+ pipeline.load_lora_weights('Akimitsujiro/dottore-genshin-impact', weight_name='Dottore ( Genshin Impact).safetensors')
63
+ image = pipeline('`1boy`, `Genshin Impact`, `Dottore `').images[0]
64
+ ```
65
+
66
+ 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)
67
+