-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjob.json
24 lines (24 loc) · 869 Bytes
/
job.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"$schema": "https://raw.githubusercontent.com/Azure/BatchAI/master/schemas/2017-09-01-preview/job.json",
"properties": {
"nodeCount": 2,
"customToolkitSettings": {
"commandLine": "cd /darknet && ./darknet detect $AZ_BATCHAI_INPUT_SCRIPT/cfg/yolov3.cfg $AZ_BATCHAI_INPUT_SCRIPT/yolov3.weights $AZ_BATCHAI_INPUT_SCRIPT/data/dog.jpg"
},
"stdOutErrPathPrefix": "$AZ_BATCHAI_MOUNT_ROOT/external",
"inputDirectories": [{
"id": "SCRIPT",
"path": "$AZ_BATCHAI_MOUNT_ROOT/external/yolo"
}],
"outputDirectories": [{
"id": "MODEL",
"pathPrefix": "$AZ_BATCHAI_MOUNT_ROOT/external",
"pathSuffix": "Models"
}],
"containerSettings": {
"imageSourceRegistry": {
"image": "smarker/yolo-darknet"
}
}
}
}