Downloads ยท 30 days
0
imagepipeline/Muscle-Slider
Muscle-Slider is a text-to-image model from imagepipeline. Use it when you need an image from a text prompt. The card lists the license as creativeml-openrail-m.
<img src="https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/acb4253b-cd44-4d55-a3d2-358633594c25/width=450/muscleslider.jpeg" alt="Generated by Image Pipeline" style="border-radius: 10px;"
Downloads ยท 30 days
0
Access
Public
Updated Dec 21, 2023
Repo size
6.9 MB
Likes
0
Public
Click a slice to open those files.
.safetensors6.9 MB ยท 100%
From the Hugging Face model README
This lora model is uploaded on imagepipeline.io
Model details - Simple LoRA to help with adjusting a subjects muscle mass. You can swing it both ways pretty far out from -3 to +5 without much distortion. Positive gives them more muscles. Negative gives them less muscles.
One issue you will find is that the more muscles they get, the more tan they get, and vise versa. Bodybuilders grease themselves up with shoe polish, and muscular guys probably get more sun... Probably as simple as that. I will try to find a way to regularize it so it is less pronounced. If you use my Skin Tone Slider you can counteract that effect.
You can try using it locally or send an API call to test the output quality.
Get your API_KEY from imagepipeline.io. No payment required.
Coding in php javascript node etc ? Checkout our documentation
import requests
import json
url = "https://imagepipeline.io/sd/text2image/v1/run"
payload = json.dumps({
"model_id": "sd1.5",
"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",
"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",
"width": "512",
"height": "512",
"samples": "1",
"num_inference_steps": "30",
"safety_checker": false,
"guidance_scale": 7.5,
"multi_lingual": "no",
"embeddings": "",
"lora_models": "1a58e047-515a-4e7e-8865-30fd49473937",
"lora_weights": "0.5"
})
headers = {
'Content-Type': 'application/json',
'API-Key': 'your_api_key'
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
}
Get more ready to use MODELS like this for SD 1.5 and SDXL :
https://api.imagepipeline.io/sd/text2image/v1
| Headers | Type | Description |
|---|---|---|
API-Key | str | Get your API_KEY from imagepipeline.io |
Content-Type | str | application/json - content type of the request body |
| Parameter | Type | Description |
|---|---|---|
model_id | str | Your base model, find available lists in models page or upload your own |
prompt | str | Text Prompt. Check our Prompt Guide for tips |
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) |
guidance_scale | float [1-20] | Higher guidance scale prioritizes text prompt relevance but sacrifices image quality. Ideal value 7.5-12.5 |
lora_models | str, array | Pass the model_id(s) of LoRA models that can be found in models page |
lora_weights | str, array | Strength of the LoRA effect |
license: creativeml-openrail-m tags:
If you have any feedback, please reach out to us at hello@imagepipeline.io
If you are the original author of this model, please click here to add credits