Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,128 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
## NightVisionXL
|
15 |
+
<img src="https://f005.backblazeb2.com/b2api/v2/b2_download_file_by_id?fileId=4_zfdf0a8ed59e8666b89b10713_f113da2bd61bc146b_d20240210_m092614_c005_v0501005_t0033_u01707557174213" alt="Generated on Image Pipeline" style="border-radius: 10px;">
|
16 |
+
|
17 |
+
|
18 |
+
|
19 |
+
**This checkpoint model is uploaded on [imagepipeline.io](https://imagepipeline.io/)**
|
20 |
+
|
21 |
+
Model details - NightVision XL, a lightly trained SDXL model, is refined with community input to achieve its current state. Specialized for photorealistic portraits, it's perfect for social media. With strong coherency and minimized biases, it avoids common issues seen in similar models. Notably, it excels in rendering rich blacks and captivating evening scenes, even producing incredibly bright outputs. This versatile tool caters to both SFW and NSFW content. User-friendly and efficient, NightVision XL requires minimal input, allowing the model's capabilities to shine in scene creation. Experience the next level of digital artistry effortlessly with NightVision XL.
|
22 |
+
|
23 |
+
|
24 |
+
|
25 |
+
|
26 |
+
[](https://imagepipeline.io/models/NightVisionXL?id=50c8df55-adb9-4036-bd88-d57f8751dc27/)
|
27 |
+
|
28 |
+
|
29 |
+
|
30 |
+
|
31 |
+
## How to try this model ?
|
32 |
+
|
33 |
+
You can try using it locally or send an API call to test the output quality.
|
34 |
+
|
35 |
+
Get your `API_KEY` from [imagepipeline.io](https://imagepipeline.io/). No payment required.
|
36 |
+
|
37 |
+
|
38 |
+
|
39 |
+
|
40 |
+
|
41 |
+
Coding in `php` `javascript` `node` etc ? Checkout our documentation
|
42 |
+
|
43 |
+
[](https://docs.imagepipeline.io/docs/introduction)
|
44 |
+
|
45 |
+
|
46 |
+
```python
|
47 |
+
import requests
|
48 |
+
import json
|
49 |
+
|
50 |
+
url = "https://imagepipeline.io/sdxl/text2image/v1/run"
|
51 |
+
|
52 |
+
payload = json.dumps({
|
53 |
+
"model_id": "50c8df55-adb9-4036-bd88-d57f8751dc27",
|
54 |
+
"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",
|
55 |
+
"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",
|
56 |
+
"width": "512",
|
57 |
+
"height": "512",
|
58 |
+
"samples": "1",
|
59 |
+
"num_inference_steps": "30",
|
60 |
+
"safety_checker": false,
|
61 |
+
"guidance_scale": 7.5,
|
62 |
+
"multi_lingual": "no",
|
63 |
+
"embeddings": "",
|
64 |
+
"lora_models": "",
|
65 |
+
"lora_weights": ""
|
66 |
+
})
|
67 |
+
|
68 |
+
headers = {
|
69 |
+
'Content-Type': 'application/json',
|
70 |
+
'API-Key': 'your_api_key'
|
71 |
+
}
|
72 |
+
|
73 |
+
response = requests.request("POST", url, headers=headers, data=payload)
|
74 |
+
|
75 |
+
print(response.text)
|
76 |
+
|
77 |
+
}
|
78 |
+
```
|
79 |
+
|
80 |
+
Get more ready to use `MODELS` like this for `SD 1.5` and `SDXL` :
|
81 |
+
|
82 |
+
[](https://imagepipeline.io/models)
|
83 |
+
|
84 |
+
### API Reference
|
85 |
+
|
86 |
+
#### Generate Image
|
87 |
+
|
88 |
+
```http
|
89 |
+
https://api.imagepipeline.io/sdxl/text2image/v1
|
90 |
+
```
|
91 |
+
|
92 |
+
| Headers | Type | Description |
|
93 |
+
|:----------------------| :------- |:-------------------------------------------------------------------------------------------------------------------|
|
94 |
+
| `API-Key` | `str` | Get your `API_KEY` from [imagepipeline.io](https://imagepipeline.io/) |
|
95 |
+
| `Content-Type` | `str` | application/json - content type of the request body |
|
96 |
+
|
97 |
+
|
98 |
+
| Parameter | Type | Description |
|
99 |
+
| :-------- | :------- | :------------------------- |
|
100 |
+
| `model_id` | `str` | Your base model, find available lists in [models page](https://imagepipeline.io/models) or upload your own|
|
101 |
+
| `prompt` | `str` | Text Prompt. Check our [Prompt Guide](https://docs.imagepipeline.io/docs/SD-1.5/docs/extras/prompt-guide) for tips |
|
102 |
+
| `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) |
|
103 |
+
| `guidance_scale` | `float [1-20]` | Higher guidance scale prioritizes text prompt relevance but sacrifices image quality. Ideal value 7.5-12.5 |
|
104 |
+
| `lora_models` | `str, array` | Pass the model_id(s) of LoRA models that can be found in models page |
|
105 |
+
| `lora_weights` | `str, array` | Strength of the LoRA effect |
|
106 |
+
|
107 |
+
---
|
108 |
+
license: creativeml-openrail-m
|
109 |
+
tags:
|
110 |
+
- imagepipeline
|
111 |
+
- imagepipeline.io
|
112 |
+
- text-to-image
|
113 |
+
- ultra-realistic
|
114 |
+
pinned: false
|
115 |
+
pipeline_tag: text-to-image
|
116 |
+
|
117 |
+
---
|
118 |
+
|
119 |
+
### Feedback
|
120 |
+
|
121 |
+
If you have any feedback, please reach out to us at [email protected]
|
122 |
+
|
123 |
+
|
124 |
+
#### 🔗 Visit Website
|
125 |
+
[](https://imagepipeline.io/)
|
126 |
+
|
127 |
+
|
128 |
+
If you are the original author of this model, please [click here](https://airtable.com/apprTaRnJbDJ8ufOx/shr4g7o9B6fWfOlUR) to add credits
|