Image Pipeline commited on
Commit
5f3fe0b
1 Parent(s): 81dc690

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +140 -0
README.md ADDED
@@ -0,0 +1,140 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ ## ProtoVision-XL-HighFidelity
15
+ <img src="https://f005.backblazeb2.com/b2api/v2/b2_download_file_by_id?fileId=4_zfdf0a8ed59e8666b89b10713_f115c9bc406116333_d20231128_m132808_c005_v0501012_t0052_u01701178088353" alt="Generated by 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 - Meet ProtoVision XL! This model is my "Bob Ross" model, a happy accident that happened when I goofed up some merge settings on my DynaVision XL model and stumbled upon some magic.
22
+
23
+ So what is ProtoVisionXL? At its core it's a custom built version of NightVision XL, which I then pile multiple fabulous LORAs on top of to create a unique look.
24
+
25
+ Like all of my other models, merges, embeds and tools, ProtoVisionXL is designed to be easy to use and excels with simple prompts, but is very coherent and can build fabulous scenes with exquisite detail.
26
+
27
+ ProtoVisionXL is a portrait model, it favors showing human subjects. That's not to say you can't get other art styles, creatures, landscapes and objects out of it, as it's still SDXL at its core and is very capable.
28
+
29
+ WARNING - DO NOT USE SDXL REFINER WITH PROTOVISION XL
30
+
31
+ The SDXL refiner is incompatible and you will have reduced quality output if you try to use the base model refiner with ProtoVision XL.
32
+
33
+ Support the creator - https://www.buymeacoffee.com/socalguitarist
34
+
35
+
36
+
37
+
38
+ [![Try this model](https://img.shields.io/badge/try_this_model-image_pipeline-BD9319)](https://imagepipeline.io/models/17f8e59a-b606-4f96-ac48-1d803a101ff5/)
39
+
40
+
41
+
42
+
43
+ ## How to try this model ?
44
+
45
+ You can try using it locally or send an API call to test the output quality.
46
+
47
+ Get your `API_KEY` from [imagepipeline.io](https://imagepipeline.io/). No payment required.
48
+
49
+
50
+
51
+
52
+
53
+ Coding in `php` `javascript` `node` etc ? Checkout our documentation
54
+
55
+ [![documentation](https://img.shields.io/badge/documentation-image_pipeline-blue)](https://docs.imagepipeline.io/docs/introduction)
56
+
57
+
58
+ ```python
59
+ import requests
60
+ import json
61
+
62
+ url = "https://imagepipeline.io/sdxl/text2image/v1/run"
63
+
64
+ payload = json.dumps({
65
+ "model_id": "17f8e59a-b606-4f96-ac48-1d803a101ff5",
66
+ "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",
67
+ "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",
68
+ "width": "512",
69
+ "height": "512",
70
+ "samples": "1",
71
+ "num_inference_steps": "30",
72
+ "safety_checker": false,
73
+ "guidance_scale": 7.5,
74
+ "multi_lingual": "no",
75
+ "embeddings": "",
76
+ "lora_models": "",
77
+ "lora_weights": ""
78
+ })
79
+
80
+ headers = {
81
+ 'Content-Type': 'application/json',
82
+ 'API-Key': 'your_api_key'
83
+ }
84
+
85
+ response = requests.request("POST", url, headers=headers, data=payload)
86
+
87
+ print(response.text)
88
+
89
+ }
90
+ ```
91
+
92
+ Get more ready to use `MODELS` like this for `SD 1.5` and `SDXL` :
93
+
94
+ [![All models](https://img.shields.io/badge/Get%20All%20Models-image_pipeline-BD9319)](https://imagepipeline.io/models)
95
+
96
+ ### API Reference
97
+
98
+ #### Generate Image
99
+
100
+ ```http
101
+ https://api.imagepipeline.io/sdxl/text2image/v1
102
+ ```
103
+
104
+ | Headers | Type | Description |
105
+ |:----------------------| :------- |:-------------------------------------------------------------------------------------------------------------------|
106
+ | `API-Key` | `str` | Get your `API_KEY` from [imagepipeline.io](https://imagepipeline.io/) |
107
+ | `Content-Type` | `str` | application/json - content type of the request body |
108
+
109
+
110
+ | Parameter | Type | Description |
111
+ | :-------- | :------- | :------------------------- |
112
+ | `model_id` | `str` | Your base model, find available lists in [models page](https://imagepipeline.io/models) or upload your own|
113
+ | `prompt` | `str` | Text Prompt. Check our [Prompt Guide](https://docs.imagepipeline.io/docs/SD-1.5/docs/extras/prompt-guide) for tips |
114
+ | `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) |
115
+ | `guidance_scale` | `float [1-20]` | Higher guidance scale prioritizes text prompt relevance but sacrifices image quality. Ideal value 7.5-12.5 |
116
+ | `lora_models` | `str, array` | Pass the model_id(s) of LoRA models that can be found in models page |
117
+ | `lora_weights` | `str, array` | Strength of the LoRA effect |
118
+
119
+ ---
120
+ license: creativeml-openrail-m
121
+ tags:
122
+ - imagepipeline
123
+ - imagepipeline.io
124
+ - text-to-image
125
+ - ultra-realistic
126
+ pinned: false
127
+ pipeline_tag: text-to-image
128
+
129
+ ---
130
+
131
+ ### Feedback
132
+
133
+ If you have any feedback, please reach out to us at [email protected]
134
+
135
+
136
+ #### 🔗 Visit Website
137
+ [![portfolio](https://img.shields.io/badge/image_pipeline-BD9319?style=for-the-badge&logo=gocd&logoColor=white)](https://imagepipeline.io/)
138
+
139
+
140
+ If you are the original author of this model, please [click here](https://airtable.com/apprTaRnJbDJ8ufOx/shr4g7o9B6fWfOlUR) to add credits