Commit
·
6b87c79
1
Parent(s):
3f9bf90
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,136 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: creativeml-openrail-m
|
3 |
+
tags:
|
4 |
+
- imagepipeline
|
5 |
+
- imagepipeline.io
|
6 |
+
- text-to-image
|
7 |
+
- ultra-realistic
|
8 |
+
pinned: false
|
9 |
+
pipeline_tag: text-to-image
|
10 |
+
|
11 |
+
---
|
12 |
+
|
13 |
+
|
14 |
+
## Weight-Slider
|
15 |
+
<img src="https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/9a60163f-737b-459c-aa6a-db2eb9dc8333/width=450/weight_slider.jpeg" alt="Generated by Image Pipeline" style="border-radius: 10px;">
|
16 |
+
|
17 |
+
|
18 |
+
|
19 |
+
**This lora model is uploaded on [imagepipeline.io](https://imagepipeline.io/)**
|
20 |
+
|
21 |
+
Model details - weight: -3.0 to 3.0
|
22 |
+
|
23 |
+
positive: more weight
|
24 |
+
|
25 |
+
negative: less weight
|
26 |
+
|
27 |
+
V2: It is more capable on both ends of the spectrum but the range you give the lora is less. I uploaded a few days ago but something messed up and I couldn't update it.
|
28 |
+
|
29 |
+
I have been working non stop on my training algorithm and it is becoming far more stable while affecting the case concept of the character and the scene less and less. With this one, you get almost no artifacts with contrast and scenery as you scale and you can get much more extreme results, leaving more in the middle.
|
30 |
+
|
31 |
+
|
32 |
+
|
33 |
+
|
34 |
+
[](https://imagepipeline.io/models/Weight-Slider?id=fc752b47-1bf8-4f64-ab52-e4d010c82d1c/)
|
35 |
+
|
36 |
+
|
37 |
+
|
38 |
+
|
39 |
+
## How to try this model ?
|
40 |
+
|
41 |
+
You can try using it locally or send an API call to test the output quality.
|
42 |
+
|
43 |
+
Get your `API_KEY` from [imagepipeline.io](https://imagepipeline.io/). No payment required.
|
44 |
+
|
45 |
+
|
46 |
+
|
47 |
+
|
48 |
+
|
49 |
+
Coding in `php` `javascript` `node` etc ? Checkout our documentation
|
50 |
+
|
51 |
+
[](https://docs.imagepipeline.io/docs/introduction)
|
52 |
+
|
53 |
+
|
54 |
+
```python
|
55 |
+
import requests
|
56 |
+
import json
|
57 |
+
|
58 |
+
url = "https://imagepipeline.io/sd/text2image/v1/run"
|
59 |
+
|
60 |
+
payload = json.dumps({
|
61 |
+
"model_id": "sd1.5",
|
62 |
+
"prompt": "ultra realistic close up portrait ((beautiful pale cyberpunk female with heavy black eyeliner)), blue eyes, shaved side haircut, hyper detail, cinematic lighting, magic neon, dark red city, Canon EOS R3, nikon, f/1.4, ISO 200, 1/160s, 8K, RAW, unedited, symmetrical balance, in-frame, 8K",
|
63 |
+
"negative_prompt": "painting, extra fingers, mutated hands, poorly drawn hands, poorly drawn face, deformed, ugly, blurry, bad anatomy, bad proportions, extra limbs, cloned face, skinny, glitchy, double torso, extra arms, extra hands, mangled fingers, missing lips, ugly face, distorted face, extra legs, anime",
|
64 |
+
"width": "512",
|
65 |
+
"height": "512",
|
66 |
+
"samples": "1",
|
67 |
+
"num_inference_steps": "30",
|
68 |
+
"safety_checker": false,
|
69 |
+
"guidance_scale": 7.5,
|
70 |
+
"multi_lingual": "no",
|
71 |
+
"embeddings": "",
|
72 |
+
"lora_models": "fc752b47-1bf8-4f64-ab52-e4d010c82d1c",
|
73 |
+
"lora_weights": "0.5"
|
74 |
+
})
|
75 |
+
|
76 |
+
headers = {
|
77 |
+
'Content-Type': 'application/json',
|
78 |
+
'API-Key': 'your_api_key'
|
79 |
+
}
|
80 |
+
|
81 |
+
response = requests.request("POST", url, headers=headers, data=payload)
|
82 |
+
|
83 |
+
print(response.text)
|
84 |
+
|
85 |
+
}
|
86 |
+
```
|
87 |
+
|
88 |
+
Get more ready to use `MODELS` like this for `SD 1.5` and `SDXL` :
|
89 |
+
|
90 |
+
[](https://imagepipeline.io/models)
|
91 |
+
|
92 |
+
### API Reference
|
93 |
+
|
94 |
+
#### Generate Image
|
95 |
+
|
96 |
+
```http
|
97 |
+
https://api.imagepipeline.io/sd/text2image/v1
|
98 |
+
```
|
99 |
+
|
100 |
+
| Headers | Type | Description |
|
101 |
+
|:----------------------| :------- |:-------------------------------------------------------------------------------------------------------------------|
|
102 |
+
| `API-Key` | `str` | Get your `API_KEY` from [imagepipeline.io](https://imagepipeline.io/) |
|
103 |
+
| `Content-Type` | `str` | application/json - content type of the request body |
|
104 |
+
|
105 |
+
|
106 |
+
| Parameter | Type | Description |
|
107 |
+
| :-------- | :------- | :------------------------- |
|
108 |
+
| `model_id` | `str` | Your base model, find available lists in [models page](https://imagepipeline.io/models) or upload your own|
|
109 |
+
| `prompt` | `str` | Text Prompt. Check our [Prompt Guide](https://docs.imagepipeline.io/docs/SD-1.5/docs/extras/prompt-guide) for tips |
|
110 |
+
| `num_inference_steps` | `int [1-50]` | Noise is removed with each step, resulting in a higher-quality image over time. Ideal value 30-50 (without LCM) |
|
111 |
+
| `guidance_scale` | `float [1-20]` | Higher guidance scale prioritizes text prompt relevance but sacrifices image quality. Ideal value 7.5-12.5 |
|
112 |
+
| `lora_models` | `str, array` | Pass the model_id(s) of LoRA models that can be found in models page |
|
113 |
+
| `lora_weights` | `str, array` | Strength of the LoRA effect |
|
114 |
+
|
115 |
+
---
|
116 |
+
license: creativeml-openrail-m
|
117 |
+
tags:
|
118 |
+
- imagepipeline
|
119 |
+
- imagepipeline.io
|
120 |
+
- text-to-image
|
121 |
+
- ultra-realistic
|
122 |
+
pinned: false
|
123 |
+
pipeline_tag: text-to-image
|
124 |
+
|
125 |
+
---
|
126 |
+
|
127 |
+
### Feedback
|
128 |
+
|
129 |
+
If you have any feedback, please reach out to us at hello@imagepipeline.io
|
130 |
+
|
131 |
+
|
132 |
+
#### 🔗 Visit Website
|
133 |
+
[](https://imagepipeline.io/)
|
134 |
+
|
135 |
+
|
136 |
+
If you are the original author of this model, please [click here](https://airtable.com/apprTaRnJbDJ8ufOx/shr4g7o9B6fWfOlUR) to add credits
|