voodoohop / hybrid-space-bfl
- Public
- 144 runs
-
CPU
Run voodoohop/hybrid-space-bfl with an API
Use one of our client libraries to get started quickly. Clicking on a library will take you to the Playground tab where you can tweak different inputs, see the results, and copy the corresponding code to use in your own project.
Input schema
The fields you can use to run this model with an API. If you don't give a value for a field its default value will be used.
Field | Type | Default value | Description |
---|---|---|---|
prompt |
string
|
Text prompt for image generation
|
|
model_version |
string
(enum)
|
lora
Options: finetune, lora, finetune-old |
Which model version to use
|
finetune_strength |
number
|
1.3
|
Strength of the finetuning effect
|
steps |
integer
|
50
|
Number of inference steps
|
guidance |
number
|
4
|
Guidance scale for generation
|
width |
integer
|
1024
|
Output image width
|
height |
integer
|
1024
|
Output image height
|
seed |
integer
|
42
|
Random seed for reproducibility
|
use_complex_style |
boolean
|
True
|
Whether to use the complex style description (True) or simple HSL style (False)
|
{
"type": "object",
"title": "Input",
"required": [
"prompt"
],
"properties": {
"seed": {
"type": "integer",
"title": "Seed",
"default": 42,
"x-order": 7,
"description": "Random seed for reproducibility"
},
"steps": {
"type": "integer",
"title": "Steps",
"default": 50,
"x-order": 3,
"description": "Number of inference steps"
},
"width": {
"type": "integer",
"title": "Width",
"default": 1024,
"x-order": 5,
"description": "Output image width"
},
"height": {
"type": "integer",
"title": "Height",
"default": 1024,
"x-order": 6,
"description": "Output image height"
},
"prompt": {
"type": "string",
"title": "Prompt",
"x-order": 0,
"description": "Text prompt for image generation"
},
"guidance": {
"type": "number",
"title": "Guidance",
"default": 4,
"x-order": 4,
"description": "Guidance scale for generation"
},
"model_version": {
"enum": [
"finetune",
"lora",
"finetune-old"
],
"type": "string",
"title": "model_version",
"description": "Which model version to use",
"default": "lora",
"x-order": 1
},
"finetune_strength": {
"type": "number",
"title": "Finetune Strength",
"default": 1.3,
"x-order": 2,
"description": "Strength of the finetuning effect"
},
"use_complex_style": {
"type": "boolean",
"title": "Use Complex Style",
"default": true,
"x-order": 8,
"description": "Whether to use the complex style description (True) or simple HSL style (False)"
}
}
}
Output schema
The shape of the response you’ll get when you run this model with an API.
Schema
{
"type": "string",
"title": "Output",
"format": "uri"
}