File size: 2,842 Bytes
5d8c7cb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
---
license: other
license_name: bespoke-lora-trained-license
license_link: https://multimodal.art/civitai-licenses?allowNoCredit=True&allowCommercialUse=Image&allowDerivatives=True&allowDifferentLicense=True
tags:
- text-to-image
- stable-diffusion
- lora
- diffusers
- template:sd-lora
- migrated
- bodybuilder
- muscles
- tool
- ripped
- slider

base_model: runwayml/stable-diffusion-v1-5
instance_prompt: 
widget:
- text: 'photo of an elderly, man and woman with grey hair, cooking in the kitchen, center shot, apron '
  parameters:
    negative_prompt: nude, nsfw, cartoon, cgi, render, illustration, painting, drawing, bad quality, grainy, low resolution
            
  output:
    url: >-
      2190567.jpeg
- text: 'photo of a man with light brown hair, looking at himself in a bathroom mirror, shorts, shirtless '
  parameters:
    negative_prompt: (shirt:1.2), cartoon, cgi, render, illustration, painting, drawing, bad quality, grainy, low resolution
            
  output:
    url: >-
      1637301.jpeg
- text: 'photo of a blonde woman in  lingerie  '
  parameters:
    negative_prompt: nude, cartoon, cgi, render, illustration, painting, drawing, bad quality, grainy, low resolution
            
  output:
    url: >-
      1637400.jpeg

---

# Muscle Slider - LoRA 

<Gallery />





## Model description

<p><span style="color:rgb(193, 194, 197)">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.</span><br /><br />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 <a target="_blank" rel="ugc" href="https://civitai.com/models/112594">Skin Tone Slider</a> you can counteract that effect.</p>



## Download model

Weights for this model are available in Safetensors format.

[Download](/ostris/muscle-slider-lora/tree/main) them in the Files & versions tab.

## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)

```py
from diffusers import AutoPipelineForText2Image
import torch

pipeline = AutoPipelineForText2Image.from_pretrained('runwayml/stable-diffusion-v1-5', torch_dtype=torch.float16).to('cuda')
pipeline.load_lora_weights('ostris/muscle-slider-lora', weight_name='muscle_slider_v1.safetensors')
image = pipeline('photo of a blonde woman in  lingerie  ').images[0]
```

For more details, including weighting, merging and fusing LoRAs, check the [documentation on loading LoRAs in diffusers](https://huggingface.co/docs/diffusers/main/en/using-diffusers/loading_adapters)