prompthunt
/
dreambooth-batch-pose
batch inference for dreambooth trainings including openpose
Run prompthunt/dreambooth-batch-pose 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 |
---|---|---|---|
images |
string
|
JSON input
|
|
weights |
string
|
URL to weights
|
|
model |
string
(enum)
|
1.5
Options: 1.5, 2.1 |
Model
|
cf_api_key |
string
|
|
Cloudflare API Key
|
cf_account_id |
string
|
|
Cloudflare Account ID
|
{
"type": "object",
"title": "Input",
"required": [
"images",
"weights"
],
"properties": {
"model": {
"enum": [
"1.5",
"2.1"
],
"type": "string",
"title": "model",
"description": "Model",
"default": "1.5",
"x-order": 2
},
"images": {
"type": "string",
"title": "Images",
"x-order": 0,
"description": "JSON input"
},
"weights": {
"type": "string",
"title": "Weights",
"x-order": 1,
"description": "URL to weights"
},
"cf_api_key": {
"type": "string",
"title": "Cf Api Key",
"default": "",
"x-order": 3,
"description": "Cloudflare API Key"
},
"cf_account_id": {
"type": "string",
"title": "Cf Account Id",
"default": "",
"x-order": 4,
"description": "Cloudflare Account ID"
}
}
}
Output schema
The shape of the response you’ll get when you run this model with an API.
Schema
{
"type": "array",
"items": {
"type": "string"
},
"title": "Output"
}