generated from dub3-space/base-lily-module
-
Notifications
You must be signed in to change notification settings - Fork 1
/
lilypad_module.json.tmpl
54 lines (53 loc) · 1.05 KB
/
lilypad_module.json.tmpl
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
{
"machine": {
"gpu": 1,
"cpu": 1000,
"ram": 100
},
"job": {
"APIVersion": "V1beta1",
"Spec": {
"Deal": {
"Concurrency": 1
},
"Docker": {
"Entrypoint": [
"python",
"app.py",
{{.SENTENCE}},
{{.LANGUAGE}},
{{.INPUT_FOLDER}},
{{.OUTPUT_FOLDER}}
],
"Image": "bringhi/synt@sha256:641ddb3150573cec35dcb62f9c492899e9758f07d6d698d8af8ac397b85e457f"
},
"Engine": "Docker",
"Network": {
"Type": "None"
},
"PublisherSpec": {
"Type": "Estuary"
},
"Resources": {
"GPU": "1"
},
"Timeout": 1800,
"Verifier": "Noop",
"inputs": [
{
"URL": {{.URL}},
"Name": "fabri.wav",
"StorageSource": "urlDownload",
"path": "/inputs"
}
],
"outputs": [
{
"StorageSource": "IPFS",
"Name": "outputs",
"path": "/outputs"
}
]
}
}
}