Instructions to use w2wyfcss-org/german_uniform with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use w2wyfcss-org/german_uniform with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("stabilityai/stable-diffusion-xl-base-1.0", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("w2wyfcss-org/german_uniform") prompt = "(8k, RAW photo, best quality, masterpiece:1.2), (realistic, photo-realistic:1.37),\\(ulzzang-6500-v1.1\\),\\(detailed eyes\\), \\(detailed facial features\\), \\(\\(detailed clothes features\\)\\), (upper body),(large breasts),(face focus),extremely detailed CG unity 8k wallpaper, huge filesize, ultra-detailed, highres, absurdres,beautiful eyes,ray tracing, dramatic shadows,fine detail,dramatic angle,high saturation,lens flare,(standing),soft light,Detailed skin texture, detailed clothing texture,looking at viewer," image = pipe(prompt).images[0] - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
Commit ·
f1ca843
verified ·
0
Parent(s):
initial commit
Browse files- .gitattributes +55 -0
- README.md +107 -0
.gitattributes
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
*.7z filter=lfs diff=lfs merge=lfs -text
|
| 2 |
+
*.arrow filter=lfs diff=lfs merge=lfs -text
|
| 3 |
+
*.bin filter=lfs diff=lfs merge=lfs -text
|
| 4 |
+
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 5 |
+
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
| 6 |
+
*.ftz filter=lfs diff=lfs merge=lfs -text
|
| 7 |
+
*.gz filter=lfs diff=lfs merge=lfs -text
|
| 8 |
+
*.h5 filter=lfs diff=lfs merge=lfs -text
|
| 9 |
+
*.joblib filter=lfs diff=lfs merge=lfs -text
|
| 10 |
+
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
| 11 |
+
*.lz4 filter=lfs diff=lfs merge=lfs -text
|
| 12 |
+
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
| 13 |
+
*.model filter=lfs diff=lfs merge=lfs -text
|
| 14 |
+
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
| 15 |
+
*.npy filter=lfs diff=lfs merge=lfs -text
|
| 16 |
+
*.npz filter=lfs diff=lfs merge=lfs -text
|
| 17 |
+
*.onnx filter=lfs diff=lfs merge=lfs -text
|
| 18 |
+
*.ot filter=lfs diff=lfs merge=lfs -text
|
| 19 |
+
*.parquet filter=lfs diff=lfs merge=lfs -text
|
| 20 |
+
*.pb filter=lfs diff=lfs merge=lfs -text
|
| 21 |
+
*.pickle filter=lfs diff=lfs merge=lfs -text
|
| 22 |
+
*.pkl filter=lfs diff=lfs merge=lfs -text
|
| 23 |
+
*.pt filter=lfs diff=lfs merge=lfs -text
|
| 24 |
+
*.pth filter=lfs diff=lfs merge=lfs -text
|
| 25 |
+
*.rar filter=lfs diff=lfs merge=lfs -text
|
| 26 |
+
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 27 |
+
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
| 28 |
+
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
| 29 |
+
*.tar filter=lfs diff=lfs merge=lfs -text
|
| 30 |
+
*.tflite filter=lfs diff=lfs merge=lfs -text
|
| 31 |
+
*.tgz filter=lfs diff=lfs merge=lfs -text
|
| 32 |
+
*.wasm filter=lfs diff=lfs merge=lfs -text
|
| 33 |
+
*.xz filter=lfs diff=lfs merge=lfs -text
|
| 34 |
+
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 35 |
+
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
# Audio files - uncompressed
|
| 38 |
+
*.pcm filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
*.sam filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
*.raw filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
# Audio files - compressed
|
| 42 |
+
*.aac filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
*.flac filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
*.mp3 filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
*.ogg filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
*.wav filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
# Image files - uncompressed
|
| 48 |
+
*.bmp filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
*.gif filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
*.png filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
*.tiff filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
# Image files - compressed
|
| 53 |
+
*.jpg filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
*.jpeg filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
*.webp filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,107 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- text-to-image
|
| 4 |
+
- stable-diffusion
|
| 5 |
+
- lora
|
| 6 |
+
- diffusers
|
| 7 |
+
- template:sd-lora
|
| 8 |
+
widget:
|
| 9 |
+
- text: >-
|
| 10 |
+
(8k, RAW photo, best quality, masterpiece:1.2), (realistic,
|
| 11 |
+
photo-realistic:1.37),\(ulzzang-6500-v1.1\),\(detailed eyes\), \(detailed
|
| 12 |
+
facial features\), \(\(detailed clothes features\)\), (upper body),(large
|
| 13 |
+
breasts),(face focus),extremely detailed CG unity 8k wallpaper, huge
|
| 14 |
+
filesize, ultra-detailed, highres, absurdres,beautiful eyes,ray tracing,
|
| 15 |
+
dramatic shadows,fine detail,dramatic angle,high saturation,lens
|
| 16 |
+
flare,(standing),soft light,Detailed skin texture, detailed clothing
|
| 17 |
+
texture,looking at viewer,
|
| 18 |
+
output:
|
| 19 |
+
url: images/german_uniform1.jpeg
|
| 20 |
+
base_model: stabilityai/stable-diffusion-xl-base-1.0
|
| 21 |
+
instance_prompt: >-
|
| 22 |
+
(8k, RAW photo, best quality, masterpiece:1.2), (realistic,
|
| 23 |
+
photo-realistic:1.37), \(ulzzang-6500-v1.1\), \(detailed eyes\), \(detailed
|
| 24 |
+
facial features\), \(\(detailed clothes features\)\), (upper body), (large
|
| 25 |
+
breasts), (face focus), extremely detailed CG unity 8k wallpaper, huge
|
| 26 |
+
filesize, ultra-detailed, highres, absurdres, beautiful eyes, ray tracing,
|
| 27 |
+
dramatic shadows, fine detail, dramatic angle, high saturation, lens flare,
|
| 28 |
+
(standing), soft light, Detailed skin texture, detailed clothing texture,
|
| 29 |
+
looking at viewer
|
| 30 |
+
license: mit
|
| 31 |
+
---
|
| 32 |
+
# german_uniform
|
| 33 |
+
|
| 34 |
+
<Gallery />
|
| 35 |
+
|
| 36 |
+
## Model description
|
| 37 |
+
|
| 38 |
+
german uniform Lora
|
| 39 |
+
|
| 40 |
+
## Trigger words
|
| 41 |
+
|
| 42 |
+
You should use `(8k` to trigger the image generation.
|
| 43 |
+
|
| 44 |
+
You should use `RAW photo` to trigger the image generation.
|
| 45 |
+
|
| 46 |
+
You should use `best quality` to trigger the image generation.
|
| 47 |
+
|
| 48 |
+
You should use `masterpiece:1.2)` to trigger the image generation.
|
| 49 |
+
|
| 50 |
+
You should use `(realistic` to trigger the image generation.
|
| 51 |
+
|
| 52 |
+
You should use `photo-realistic:1.37)` to trigger the image generation.
|
| 53 |
+
|
| 54 |
+
You should use `\(ulzzang-6500-v1.1\)` to trigger the image generation.
|
| 55 |
+
|
| 56 |
+
You should use `\(detailed eyes\)` to trigger the image generation.
|
| 57 |
+
|
| 58 |
+
You should use `\(detailed facial features\)` to trigger the image generation.
|
| 59 |
+
|
| 60 |
+
You should use `\(\(detailed clothes features\)\)` to trigger the image generation.
|
| 61 |
+
|
| 62 |
+
You should use `(upper body)` to trigger the image generation.
|
| 63 |
+
|
| 64 |
+
You should use `(large breasts)` to trigger the image generation.
|
| 65 |
+
|
| 66 |
+
You should use `(face focus)` to trigger the image generation.
|
| 67 |
+
|
| 68 |
+
You should use `extremely detailed CG unity 8k wallpaper` to trigger the image generation.
|
| 69 |
+
|
| 70 |
+
You should use `huge filesize` to trigger the image generation.
|
| 71 |
+
|
| 72 |
+
You should use `ultra-detailed` to trigger the image generation.
|
| 73 |
+
|
| 74 |
+
You should use `highres` to trigger the image generation.
|
| 75 |
+
|
| 76 |
+
You should use `absurdres` to trigger the image generation.
|
| 77 |
+
|
| 78 |
+
You should use `beautiful eyes` to trigger the image generation.
|
| 79 |
+
|
| 80 |
+
You should use `ray tracing` to trigger the image generation.
|
| 81 |
+
|
| 82 |
+
You should use `dramatic shadows` to trigger the image generation.
|
| 83 |
+
|
| 84 |
+
You should use `fine detail` to trigger the image generation.
|
| 85 |
+
|
| 86 |
+
You should use `dramatic angle` to trigger the image generation.
|
| 87 |
+
|
| 88 |
+
You should use `high saturation` to trigger the image generation.
|
| 89 |
+
|
| 90 |
+
You should use `lens flare` to trigger the image generation.
|
| 91 |
+
|
| 92 |
+
You should use `(standing)` to trigger the image generation.
|
| 93 |
+
|
| 94 |
+
You should use `soft light` to trigger the image generation.
|
| 95 |
+
|
| 96 |
+
You should use `Detailed skin texture` to trigger the image generation.
|
| 97 |
+
|
| 98 |
+
You should use `detailed clothing texture` to trigger the image generation.
|
| 99 |
+
|
| 100 |
+
You should use `looking at viewer` to trigger the image generation.
|
| 101 |
+
|
| 102 |
+
|
| 103 |
+
## Download model
|
| 104 |
+
|
| 105 |
+
Weights for this model are available in Safetensors format.
|
| 106 |
+
|
| 107 |
+
[Download](/w2wyfcss-org/german_uniform/tree/main) them in the Files & versions tab.
|