image-pipeline commited on
Commit
8ec51c9
·
verified ·
1 Parent(s): 59999db

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +134 -0
README.md ADDED
@@ -0,0 +1,134 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ ## shoejob
15
+ <img src="https://via.placeholder.com/468x300?text=App+Screenshot+Here" alt="Generated on 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 - A footjob, but with shoes on. Even more niche!
22
+
23
+ Mostly works with shiny high heels, platforms, and boots. Uses regular footjob images from my footjob lora to help reinforce the footjob concept, so this model is also good at plain old feet. Kept relatively simple for ease of use: All pov, all women, basically all centered.
24
+
25
+ Understands a tiny bit of posing, such as laying back / sitting up, laying on the floor, from above / sitting on a couch, from below, knees apart / knees together. Also trained for cum on shoes.
26
+
27
+ It could be improved or expanded in lots of ways, but it's been sitting for a while so I'm going ahead and uploading it for y'all.
28
+
29
+
30
+
31
+
32
+ [![Try this model](https://img.shields.io/badge/try_this_model-image_pipeline-BD9319)](https://imagepipeline.io/models/shoejob?id=11d7b443-3df2-4c53-afb4-89fa02be2b7b/)
33
+
34
+
35
+
36
+
37
+ ## How to try this model ?
38
+
39
+ You can try using it locally or send an API call to test the output quality.
40
+
41
+ Get your `API_KEY` from [imagepipeline.io](https://imagepipeline.io/). No payment required.
42
+
43
+
44
+
45
+
46
+
47
+ Coding in `php` `javascript` `node` etc ? Checkout our documentation
48
+
49
+ [![documentation](https://img.shields.io/badge/documentation-image_pipeline-blue)](https://docs.imagepipeline.io/docs/introduction)
50
+
51
+
52
+ ```python
53
+ import requests
54
+ import json
55
+
56
+ url = "https://imagepipeline.io/sd/text2image/v1/run"
57
+
58
+ payload = json.dumps({
59
+ "model_id": "sd1.5",
60
+ "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",
61
+ "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",
62
+ "width": "512",
63
+ "height": "512",
64
+ "samples": "1",
65
+ "num_inference_steps": "30",
66
+ "safety_checker": false,
67
+ "guidance_scale": 7.5,
68
+ "multi_lingual": "no",
69
+ "embeddings": "",
70
+ "lora_models": "11d7b443-3df2-4c53-afb4-89fa02be2b7b",
71
+ "lora_weights": "0.5"
72
+ })
73
+
74
+ headers = {
75
+ 'Content-Type': 'application/json',
76
+ 'API-Key': 'your_api_key'
77
+ }
78
+
79
+ response = requests.request("POST", url, headers=headers, data=payload)
80
+
81
+ print(response.text)
82
+
83
+ }
84
+ ```
85
+
86
+ Get more ready to use `MODELS` like this for `SD 1.5` and `SDXL` :
87
+
88
+ [![All models](https://img.shields.io/badge/Get%20All%20Models-image_pipeline-BD9319)](https://imagepipeline.io/models)
89
+
90
+ ### API Reference
91
+
92
+ #### Generate Image
93
+
94
+ ```http
95
+ https://api.imagepipeline.io/sd/text2image/v1
96
+ ```
97
+
98
+ | Headers | Type | Description |
99
+ |:----------------------| :------- |:-------------------------------------------------------------------------------------------------------------------|
100
+ | `API-Key` | `str` | Get your `API_KEY` from [imagepipeline.io](https://imagepipeline.io/) |
101
+ | `Content-Type` | `str` | application/json - content type of the request body |
102
+
103
+
104
+ | Parameter | Type | Description |
105
+ | :-------- | :------- | :------------------------- |
106
+ | `model_id` | `str` | Your base model, find available lists in [models page](https://imagepipeline.io/models) or upload your own|
107
+ | `prompt` | `str` | Text Prompt. Check our [Prompt Guide](https://docs.imagepipeline.io/docs/SD-1.5/docs/extras/prompt-guide) for tips |
108
+ | `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) |
109
+ | `guidance_scale` | `float [1-20]` | Higher guidance scale prioritizes text prompt relevance but sacrifices image quality. Ideal value 7.5-12.5 |
110
+ | `lora_models` | `str, array` | Pass the model_id(s) of LoRA models that can be found in models page |
111
+ | `lora_weights` | `str, array` | Strength of the LoRA effect |
112
+
113
+ ---
114
+ license: creativeml-openrail-m
115
+ tags:
116
+ - imagepipeline
117
+ - imagepipeline.io
118
+ - text-to-image
119
+ - ultra-realistic
120
+ pinned: false
121
+ pipeline_tag: text-to-image
122
+
123
+ ---
124
+
125
+ ### Feedback
126
+
127
+ If you have any feedback, please reach out to us at [email protected]
128
+
129
+
130
+ #### 🔗 Visit Website
131
+ [![portfolio](https://img.shields.io/badge/image_pipeline-BD9319?style=for-the-badge&logo=gocd&logoColor=white)](https://imagepipeline.io/)
132
+
133
+
134
+ If you are the original author of this model, please [click here](https://airtable.com/apprTaRnJbDJ8ufOx/shr4g7o9B6fWfOlUR) to add credits