image-pipeline
commited on
Commit
•
6f78a11
1
Parent(s):
af5f5d5
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,148 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
## Age-Slider
|
15 |
+
<img src="https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/384682e2-f496-431e-ae18-9ab2f9b4e182/width=450/Horror%20Slider%20(1).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 - Trained and Works best on ObjectiveReality(the most flexible general purpose reality model I’ve tried so far) effects may vary on other models.
|
22 |
+
|
23 |
+
Big UPDATE:
|
24 |
+
|
25 |
+
Significantly Lower contrasts compared to the last version.
|
26 |
+
|
27 |
+
Larger age gap.
|
28 |
+
|
29 |
+
I will put only images of adults for the showcase, and STRONGLY condemn the behavior of using this tool in generating NSFW images of minors.
|
30 |
+
|
31 |
+
Working range: -5 to +5, or higher depending on your prompting style. But generally recommend -1 to +4, as additional applied weight would slightly change the images. I do not take any responsibility if you choose to go below -1.
|
32 |
+
|
33 |
+
negative for younger
|
34 |
+
|
35 |
+
positive for older
|
36 |
+
|
37 |
+
The model tend to create NSFW images as the character getting older, but that is fixable with negative prompts. I do not plan to adjust it, as you most likely won’t mind and it is not hard to fix with negative prompt.
|
38 |
+
|
39 |
+
Perhaps you can buy me a beer if you enjoy the models and want to help me keep the motivation on what I do😺
|
40 |
+
|
41 |
+
https://ko-fi.com/nextmealslider
|
42 |
+
|
43 |
+
|
44 |
+
|
45 |
+
|
46 |
+
[![Try this model](https://img.shields.io/badge/try_this_model-image_pipeline-BD9319)](https://imagepipeline.io/models/Age-Slider?id=76297d2a-da12-4eb0-884e-d37bbe137573/)
|
47 |
+
|
48 |
+
|
49 |
+
|
50 |
+
|
51 |
+
## How to try this model ?
|
52 |
+
|
53 |
+
You can try using it locally or send an API call to test the output quality.
|
54 |
+
|
55 |
+
Get your `API_KEY` from [imagepipeline.io](https://imagepipeline.io/). No payment required.
|
56 |
+
|
57 |
+
|
58 |
+
|
59 |
+
|
60 |
+
|
61 |
+
Coding in `php` `javascript` `node` etc ? Checkout our documentation
|
62 |
+
|
63 |
+
[![documentation](https://img.shields.io/badge/documentation-image_pipeline-blue)](https://docs.imagepipeline.io/docs/introduction)
|
64 |
+
|
65 |
+
|
66 |
+
```python
|
67 |
+
import requests
|
68 |
+
import json
|
69 |
+
|
70 |
+
url = "https://imagepipeline.io/sd/text2image/v1/run"
|
71 |
+
|
72 |
+
payload = json.dumps({
|
73 |
+
"model_id": "sd1.5",
|
74 |
+
"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",
|
75 |
+
"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",
|
76 |
+
"width": "512",
|
77 |
+
"height": "512",
|
78 |
+
"samples": "1",
|
79 |
+
"num_inference_steps": "30",
|
80 |
+
"safety_checker": false,
|
81 |
+
"guidance_scale": 7.5,
|
82 |
+
"multi_lingual": "no",
|
83 |
+
"embeddings": "",
|
84 |
+
"lora_models": "76297d2a-da12-4eb0-884e-d37bbe137573",
|
85 |
+
"lora_weights": "0.5"
|
86 |
+
})
|
87 |
+
|
88 |
+
headers = {
|
89 |
+
'Content-Type': 'application/json',
|
90 |
+
'API-Key': 'your_api_key'
|
91 |
+
}
|
92 |
+
|
93 |
+
response = requests.request("POST", url, headers=headers, data=payload)
|
94 |
+
|
95 |
+
print(response.text)
|
96 |
+
|
97 |
+
}
|
98 |
+
```
|
99 |
+
|
100 |
+
Get more ready to use `MODELS` like this for `SD 1.5` and `SDXL` :
|
101 |
+
|
102 |
+
[![All models](https://img.shields.io/badge/Get%20All%20Models-image_pipeline-BD9319)](https://imagepipeline.io/models)
|
103 |
+
|
104 |
+
### API Reference
|
105 |
+
|
106 |
+
#### Generate Image
|
107 |
+
|
108 |
+
```http
|
109 |
+
https://api.imagepipeline.io/sd/text2image/v1
|
110 |
+
```
|
111 |
+
|
112 |
+
| Headers | Type | Description |
|
113 |
+
|:----------------------| :------- |:-------------------------------------------------------------------------------------------------------------------|
|
114 |
+
| `API-Key` | `str` | Get your `API_KEY` from [imagepipeline.io](https://imagepipeline.io/) |
|
115 |
+
| `Content-Type` | `str` | application/json - content type of the request body |
|
116 |
+
|
117 |
+
|
118 |
+
| Parameter | Type | Description |
|
119 |
+
| :-------- | :------- | :------------------------- |
|
120 |
+
| `model_id` | `str` | Your base model, find available lists in [models page](https://imagepipeline.io/models) or upload your own|
|
121 |
+
| `prompt` | `str` | Text Prompt. Check our [Prompt Guide](https://docs.imagepipeline.io/docs/SD-1.5/docs/extras/prompt-guide) for tips |
|
122 |
+
| `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) |
|
123 |
+
| `guidance_scale` | `float [1-20]` | Higher guidance scale prioritizes text prompt relevance but sacrifices image quality. Ideal value 7.5-12.5 |
|
124 |
+
| `lora_models` | `str, array` | Pass the model_id(s) of LoRA models that can be found in models page |
|
125 |
+
| `lora_weights` | `str, array` | Strength of the LoRA effect |
|
126 |
+
|
127 |
+
---
|
128 |
+
license: creativeml-openrail-m
|
129 |
+
tags:
|
130 |
+
- imagepipeline
|
131 |
+
- imagepipeline.io
|
132 |
+
- text-to-image
|
133 |
+
- ultra-realistic
|
134 |
+
pinned: false
|
135 |
+
pipeline_tag: text-to-image
|
136 |
+
|
137 |
+
---
|
138 |
+
|
139 |
+
### Feedback
|
140 |
+
|
141 |
+
If you have any feedback, please reach out to us at hello@imagepipeline.io
|
142 |
+
|
143 |
+
|
144 |
+
#### 🔗 Visit Website
|
145 |
+
[![portfolio](https://img.shields.io/badge/image_pipeline-BD9319?style=for-the-badge&logo=gocd&logoColor=white)](https://imagepipeline.io/)
|
146 |
+
|
147 |
+
|
148 |
+
If you are the original author of this model, please [click here](https://airtable.com/apprTaRnJbDJ8ufOx/shr4g7o9B6fWfOlUR) to add credits
|