Create inference.json
Browse files- inference.json +25 -0
inference.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"version": 1,
|
| 3 |
+
"command": "python3 app.py",
|
| 4 |
+
"hardware": "auto",
|
| 5 |
+
"framework": "diffusers",
|
| 6 |
+
"enable_inference": true,
|
| 7 |
+
"enable_gradio": true,
|
| 8 |
+
"gradio_ui": {
|
| 9 |
+
"title": "Floral High Dynamic Range - Image Generation",
|
| 10 |
+
"description": "Generate high-quality images using the Floral High Dynamic Range model.",
|
| 11 |
+
"inputs": [
|
| 12 |
+
{
|
| 13 |
+
"type": "text",
|
| 14 |
+
"label": "Enter your prompt"
|
| 15 |
+
}
|
| 16 |
+
],
|
| 17 |
+
"outputs": [
|
| 18 |
+
{
|
| 19 |
+
"type": "image",
|
| 20 |
+
"label": "Generated Image"
|
| 21 |
+
}
|
| 22 |
+
],
|
| 23 |
+
"button_text": "Compute"
|
| 24 |
+
}
|
| 25 |
+
}
|