image-pipeline commited on
Commit
d2ed54b
1 Parent(s): 99ed9f3

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +141 -0
README.md ADDED
@@ -0,0 +1,141 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ ## RunDiffusion-FX-Photorealistic
15
+ <img src="https://f005.backblazeb2.com/b2api/v2/b2_download_file_by_id?fileId=4_zfdf0a8ed59e8666b89b10713_f1118a08dcf7b434c_d20231130_m095426_c005_v0501014_t0007_u01701338066924" 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 - How to use the model
22
+ We set out to create a model that can accept small prompts yet generate amazing results. We've done that with RunDiffusion FX. Watch our guide on YouTube.
23
+
24
+ Small prompts work great!
25
+
26
+ (hyperrealism:1.2), BREAK fish swimming under the water BREAK (8K UHD:1.2), (photorealistic:1.2)
27
+ Use a Negative!
28
+
29
+ e.g. Negative Prompt: plain background, boring, plain, standard, homogenous, uncreative, unattractive, opaque, grayscale, monochrome, distorted details, low details, grains, grainy, foggy, dark, blurry, portrait, oversaturated, low contrast, underexposed, overexposed, low-res, low quality, close-up, macro, surreal, multiple views, multiple angles
30
+ Wide/Tall aspect ratios are awesome!
31
+
32
+ Resolutions like 480x832 832x480 work great then you can upscale.
33
+
34
+ Lower that CFG! You can use a CFG scale of 3.5 to 5 to get some softer photorealistic images
35
+
36
+
37
+
38
+
39
+ [![Try this model](https://img.shields.io/badge/try_this_model-image_pipeline-BD9319)](https://imagepipeline.io/models/RunDiffusion-FX-Photorealistic?id=f46a1734-6a10-4348-ad29-b5068eed10cb/)
40
+
41
+
42
+
43
+
44
+ ## How to try this model ?
45
+
46
+ You can try using it locally or send an API call to test the output quality.
47
+
48
+ Get your `API_KEY` from [imagepipeline.io](https://imagepipeline.io/). No payment required.
49
+
50
+
51
+
52
+
53
+
54
+ Coding in `php` `javascript` `node` etc ? Checkout our documentation
55
+
56
+ [![documentation](https://img.shields.io/badge/documentation-image_pipeline-blue)](https://docs.imagepipeline.io/docs/introduction)
57
+
58
+
59
+ ```python
60
+ import requests
61
+ import json
62
+
63
+ url = "https://imagepipeline.io/sd/text2image/v1/run"
64
+
65
+ payload = json.dumps({
66
+ "model_id": "f46a1734-6a10-4348-ad29-b5068eed10cb",
67
+ "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",
68
+ "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",
69
+ "width": "512",
70
+ "height": "512",
71
+ "samples": "1",
72
+ "num_inference_steps": "30",
73
+ "safety_checker": false,
74
+ "guidance_scale": 7.5,
75
+ "multi_lingual": "no",
76
+ "embeddings": "",
77
+ "lora_models": "",
78
+ "lora_weights": ""
79
+ })
80
+
81
+ headers = {
82
+ 'Content-Type': 'application/json',
83
+ 'API-Key': 'your_api_key'
84
+ }
85
+
86
+ response = requests.request("POST", url, headers=headers, data=payload)
87
+
88
+ print(response.text)
89
+
90
+ }
91
+ ```
92
+
93
+ Get more ready to use `MODELS` like this for `SD 1.5` and `SDXL` :
94
+
95
+ [![All models](https://img.shields.io/badge/Get%20All%20Models-image_pipeline-BD9319)](https://imagepipeline.io/models)
96
+
97
+ ### API Reference
98
+
99
+ #### Generate Image
100
+
101
+ ```http
102
+ https://api.imagepipeline.io/sd/text2image/v1
103
+ ```
104
+
105
+ | Headers | Type | Description |
106
+ |:----------------------| :------- |:-------------------------------------------------------------------------------------------------------------------|
107
+ | `API-Key` | `str` | Get your `API_KEY` from [imagepipeline.io](https://imagepipeline.io/) |
108
+ | `Content-Type` | `str` | application/json - content type of the request body |
109
+
110
+
111
+ | Parameter | Type | Description |
112
+ | :-------- | :------- | :------------------------- |
113
+ | `model_id` | `str` | Your base model, find available lists in [models page](https://imagepipeline.io/models) or upload your own|
114
+ | `prompt` | `str` | Text Prompt. Check our [Prompt Guide](https://docs.imagepipeline.io/docs/SD-1.5/docs/extras/prompt-guide) for tips |
115
+ | `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) |
116
+ | `guidance_scale` | `float [1-20]` | Higher guidance scale prioritizes text prompt relevance but sacrifices image quality. Ideal value 7.5-12.5 |
117
+ | `lora_models` | `str, array` | Pass the model_id(s) of LoRA models that can be found in models page |
118
+ | `lora_weights` | `str, array` | Strength of the LoRA effect |
119
+
120
+ ---
121
+ license: creativeml-openrail-m
122
+ tags:
123
+ - imagepipeline
124
+ - imagepipeline.io
125
+ - text-to-image
126
+ - ultra-realistic
127
+ pinned: false
128
+ pipeline_tag: text-to-image
129
+
130
+ ---
131
+
132
+ ### Feedback
133
+
134
+ If you have any feedback, please reach out to us at [email protected]
135
+
136
+
137
+ #### 🔗 Visit Website
138
+ [![portfolio](https://img.shields.io/badge/image_pipeline-BD9319?style=for-the-badge&logo=gocd&logoColor=white)](https://imagepipeline.io/)
139
+
140
+
141
+ If you are the original author of this model, please [click here](https://airtable.com/apprTaRnJbDJ8ufOx/shr4g7o9B6fWfOlUR) to add credits