-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinference_blueprint.yaml
More file actions
55 lines (44 loc) · 1011 Bytes
/
inference_blueprint.yaml
File metadata and controls
55 lines (44 loc) · 1011 Bytes
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
---
title: Stable Diffusion Inference
version: 1.0.0
description: "Stable Diffusion endpoint that can be used to generate image from text"
long_description: "Stable Diffusion endpoint optimized for CPU can be used to generate image from text"
author: "cnvrg"
author_email: "libhub@cnvrg.io"
tags:
- inference
tasks:
- title: Inference
top: 400
left: 300
type: deploy
library: sd-inference
library_version: 1.0.0
kind: webservice
requirements:
cpu: 3.5
memory: 8
gpu: 0
hpu: 0
image: python:3.8.10
language: python3
accept_files: false
gunicorn_config:
- key: workers
value: '1'
- key: timeout
value: '500'
file_name: predict.py
function_name: predict
prep_file: ''
prep_function: ''
input_example:
prompt: 'enter prompt here'
steps: '1'
samples: '1'
input_schema:
prompt: text
steps: text
samples: text
output_schema: {}
relations: []