Merge of BoopV4.fp16 (0.25) + absolutereality_v181 (0.5) + epicrealism_naturalSinRC1VAE (0.25)
I'm currently hitting it with a lot of test images and, for the most part, things look good.
For guidance, I generally use between 4 and 6, and sampling steps from 20 to 29.
I almost always use Beyondv4-neg and bad-hands-5 in the negative prompts.
It will produce SFW & NSFW images.
DDIM is consistent across schedule types
DPM adaptive is consistent across schedule types but isn't the best at sticking to the prompt.
DPM fast is not recommended unless you like really trippy and fairly bad generations...
DPM++ 2M works well with Karras, Exponential, and Polyexponential; Uniform and SGM Uniform give you roughly the same image just with more burn and splotchiness.
DPM++ 2M SDE works well with Karras but is a bit iffy with the others, Exp and Poly sometimes give decent results with U & SGM U being quality-free for your convenience.
DPM++ 2M SDE Heun is iffy across the board with Karraws and Exp probably giving the most usable output
DPM++ 2M Sa has better quality with Karras with Exp being a close second. Poly seems to go its own way with Loras at 0.85 in potentially good but unpredictable output. I don't know why... U and SGM U are iffy at best.
DPM++ 3M is your fast path to awful output.
DPM++ SDE has decent output across the schedule types but has a predilection for meandering off the prompt path.
DPM2 behaves pretty well using Karras or Poly, but the rest leave a lot to be desired.
DPM2a is a bit of a crapshoot across the board, which is to say that the results are unpredictable and not the best quality.
Euler is acceptable and fairly consistent across schedule types.
Euler A is unpredictable and will sometimes give you amazing results -- just not what you were expecting.
Heun gives acceptable and fairly consistent output across schedule types.
LCM is great for images you don't want to be either what you want or of a decent quality. It made some completely messed up and kind of dark -- in a horror kind of way. I'm not sure I recommend it.
LMS is unusable with U and SGM U schedule types while the others will give occasionally good output.
PLMS ... just... no. Weirdly, it output really nice output for the gecko prompt. Everything else was hot garbage.
Restart does well with all the schedule types except SGM Uniform. Those get weird.
UniPC is another it's best to just avoid.
## Overview
- **Model ID**: `the-boops-uberboop-fp16`
- **Category**: stable diffusion
- **Provider**: modelslab
- **Status**: model_ready
- **Screenshot**: `https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a08aba90-5306-45a9-863e-5afd39a94a63/width=1800/16953078.jpeg`
## API Information
This model can be used via our HTTP API. See the API documentation and usage examples below.
### Endpoint
- **URL**: `https://modelslab.com/api/v6/images/text2img`
- **Method**: POST
### Parameters
- **`prompt`** (required): prompt help in image generation
- Type: textarea
- Example: Enter prompt
- **`model_id`** (required): Enter model_id that can help in image generation
- Type: text
- Example: Enter model_id here
- **`lora_model`** (required):
- Type: multiple_models
- **`width`** (required): width of the image
- Type: number (range: 512-1024)
- **`height`** (required): height of the image
- Type: number (range: 512-1024)
- **`negative_prompt`** (optional): Negative prompt help in avoid things that you do not want in image
- Type: textarea
- Example: Enter negative prompt that you do not want see in image
- **`scheduler`** (optional):
- Type: select (options: DPM++ 2M, DPM++ SDE, Euler, Euler a)
- **`guidance_scale`** (optional):
- Type: number (range: 1-10)
## Usage Examples
### cURL
```bash
curl --request POST \
--url https://modelslab.com/api/v6/images/text2img \
--header "Content-Type: application/json" \
--data '{
"key": "YOUR_API_KEY",
"model_id": "the-boops-uberboop-fp16",
"prompt": "R3alisticF, hauntingly beautiful oriental necromancer, long flowing brown hair, bangs, darkly tanned skin, earrings, bone necklaces, dark eyeshadow, red lips, vibrant, front-laced transparent, filmy silk blouse, cleavage, holding skull, in a sandstone room lit by candles, High Detail, Perfect Composition, high contrast, silhouetted, chiascuro",
"width": "1024",
"height": "1024",
"negative_prompt": "(worst quality:2), (low quality:2), (normal quality:2), (jpeg artifacts), (blurry), (duplicate), (morbid), (mutilated), (out of frame), (extra limbs), (bad anatomy), (disfigured), (deformed), (cross-eye), (glitch), (oversaturated), (overexposed), (underexposed), (bad proportions), (bad hands), (bad feet), (cloned face), (long neck), (missing arms), (missing legs), (extra fingers), (fused fingers), (poorly drawn hands), (poorly drawn face), (mutation), (deformed eyes), watermark, text, logo, signature, grainy, tiling, censored, nsfw, ugly, blurry eyes, noisy image, bad lighting, unnatural skin, asymmetry",
"scheduler": "DPMSolverMultistepScheduler",
"guidance_scale": "7.5"
}'
```
### Python
```python
import requests
response = requests.post(
"https://modelslab.com/api/v6/images/text2img",
headers={
"Content-Type": "application/json"
},
json={
"key": "YOUR_API_KEY",
"model_id": "the-boops-uberboop-fp16",
"prompt": "R3alisticF, hauntingly beautiful oriental necromancer, long flowing brown hair, bangs, darkly tanned skin, earrings, bone necklaces, dark eyeshadow, red lips, vibrant, front-laced transparent, filmy silk blouse, cleavage, holding skull, in a sandstone room lit by candles, High Detail, Perfect Composition, high contrast, silhouetted, chiascuro",
"width": "1024",
"height": "1024",
"negative_prompt": "(worst quality:2), (low quality:2), (normal quality:2), (jpeg artifacts), (blurry), (duplicate), (morbid), (mutilated), (out of frame), (extra limbs), (bad anatomy), (disfigured), (deformed), (cross-eye), (glitch), (oversaturated), (overexposed), (underexposed), (bad proportions), (bad hands), (bad feet), (cloned face), (long neck), (missing arms), (missing legs), (extra fingers), (fused fingers), (poorly drawn hands), (poorly drawn face), (mutation), (deformed eyes), watermark, text, logo, signature, grainy, tiling, censored, nsfw, ugly, blurry eyes, noisy image, bad lighting, unnatural skin, asymmetry",
"scheduler": "DPMSolverMultistepScheduler",
"guidance_scale": "7.5"
}
)
print(response.json())
```
### JavaScript
```javascript
fetch("https://modelslab.com/api/v6/images/text2img", {
method: "POST",
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
"key": "YOUR_API_KEY",
"model_id": "the-boops-uberboop-fp16",
"prompt": "R3alisticF, hauntingly beautiful oriental necromancer, long flowing brown hair, bangs, darkly tanned skin, earrings, bone necklaces, dark eyeshadow, red lips, vibrant, front-laced transparent, filmy silk blouse, cleavage, holding skull, in a sandstone room lit by candles, High Detail, Perfect Composition, high contrast, silhouetted, chiascuro",
"width": "1024",
"height": "1024",
"negative_prompt": "(worst quality:2), (low quality:2), (normal quality:2), (jpeg artifacts), (blurry), (duplicate), (morbid), (mutilated), (out of frame), (extra limbs), (bad anatomy), (disfigured), (deformed), (cross-eye), (glitch), (oversaturated), (overexposed), (underexposed), (bad proportions), (bad hands), (bad feet), (cloned face), (long neck), (missing arms), (missing legs), (extra fingers), (fused fingers), (poorly drawn hands), (poorly drawn face), (mutation), (deformed eyes), watermark, text, logo, signature, grainy, tiling, censored, nsfw, ugly, blurry eyes, noisy image, bad lighting, unnatural skin, asymmetry",
"scheduler": "DPMSolverMultistepScheduler",
"guidance_scale": "7.5"
})
})
.then(response => response.json())
.then(data => console.log(data));
```
## Links
- [Model Playground](https://modelslab.com/models/community-model/the-boops-uberboop-fp16)
- [API Documentation](https://docs.modelslab.com)
- [ModelsLab Platform](https://modelslab.com)