-
Notifications
You must be signed in to change notification settings - Fork 19
/
apiary.apib
341 lines (241 loc) · 8.91 KB
/
apiary.apib
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
FORMAT: 1A
# elasticthought
REST API wrapper for Caffe
# Group User
Related resources of the **User API**
## Users Collection [/users]
### Create a User [POST]
+ Request (application/json)
{
"username": "foo",
"email": "[email protected]",
"password": "bar"
}
+ Response 201
# Group Data
Related resources of the **Data API**
## Datafiles Collection [/datafiles]
### Create a Datafile [POST]
The url passed in the JSON must point to a .tar.gz file. That is currently the only format allowed.
+ Request (application/json)
+ Header
Authorization: Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==
+ Body
{
"url": "http://s3.com/mnist-data.tar.gz",
"layers_type": "IMAGE_DATA"
}
+ Schema
{
"$schema":"http://json-schema.org/draft-04/schema#",
"title":"Add Datafile Request",
"description":"A request to create a new Datafile",
"type":"object",
"properties":{
"url":{
"description":"The url with the content of the datafile.",
"type":"string"
},
"layers_type":{
"description":"The format of the data (IMAGE_DATA or DATA).",
"type":"string"
},
"layers_data_param":{
"description":"The parameters associated with this data layer.",
"type":"object",
"properties":{
"backend":{
"type":"string",
"description":"The backend this DATA layer should use (LEVELDB or LMDB) - defaults to LEVELDB"
}
}
}
},
"required":[
"url",
"layers_type"
],
"additionalProperties":false
}
+ Response 201 (application/json)
{ "id": "datafile-uuid" }
## Datasets Collection [/datasets]
### Create a Dataset [POST]
If you want to split a single datafile, pass the same datafile id in both the training and the testing sections, and non-zero split percentages.
Otherwise if you've already split your data into two datafiles, specify different datafile id's, and give 0.0 for the split-percentages.
+ Request (application/json)
+ Header
Authorization: Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==
+ Body
{
"training": {
"datafile-id": "datafile-uuid",
"split-percentage": 0.7
},
"testing": {
"datafile-id": "datafile-uuid",
"split-percentage": 0.3
}
}
+ Schema
{
"$schema":"http://json-schema.org/draft-04/schema#",
"title":"Add Dataset Request",
"description":"A request to create a new Dataset from a Datafile or set of Datafiles",
"type":"object",
"properties":{
"training":{
"description":"The training portion of the dataset.",
"type":"object",
"properties":{
"datafile-id":{
"type":"string",
"description":"The id of the Datafile object"
},
"split-percentage":{
"type":"number",
"description":"The percent of datafile that should be used for training. Or 0.0 if passing two distinct Datafile id's in training/testing"
}
}
},
"testing":{
"description":"The testing portion of the dataset.",
"type":"object",
"properties":{
"datafile-id":{
"type":"string",
"description":"The id of the Datafile object"
},
"split-percentage":{
"type":"number",
"description":"The percent of datafile that should be used for training. Or 0.0 if passing two distinct Datafile id's in training/testing"
}
}
}
},
"required":[
"training",
"testing"
],
"additionalProperties":false
}
+ Response 201 (application/json)
{
"_id": "dataset-uuid"
"datafile-id": "datafile-uuid",
"processing-state": "pending",
"training": {
"split-percentage": 0.7
},
"testing": {
"split-percentage": 0.3
}
}
# Group Training
Related resources of the **Training API**
## Solvers Collection [/solvers]
### Create a Solver [POST]
+ Request (application/json)
+ Header
Authorization: Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==
+ Body
{
"dataset-id": "<dataset-id>",
"specification-url": "http://s3.com/mnist_solver.prototxt",
"specification-net-url": "http://s3.com/mnist_train_test.prototxt"
}
+ Response 201 (application/json)
{ "id": "solver-uuid" }
## Training Jobs Collection [/training-jobs]
After a solver is defined, create a training job that will use the solver to train a model.
### Create a Training Job [POST]
+ Request (application/json)
+ Header
Authorization: Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==
+ Body
{
"solver-id": "solver-uuid"
}
+ Response 201 (application/json)
{
"id": "training-job-uuid",
"processing-state": "pending"
}
## Training Job Status [/training-jobs/{id}/status]
The status of the Training Job
+ Parameters
+ id (required, string, `training-job-uuid`) ... The id of the training job.
### Training Job Status [GET]
+ Request
+ Headers
Authorization: Token 527d11fe429f3426cb8dbeba183a0d80
+ Response 200 (application/json)
{
"id": "training-job-uuid",
"state": "running",
"loss": 0.0013,
"last-iteration": 2000,
"max-iterations": 10000,
"logs": "/training-jobs/{training-job-uuid}/logs"
}
## Training Job Logs [/training-jobs/{id}/logs]
The logs of the Training Job. Currently returns entire text file, but in the future
it will support websocket streaming.
+ Parameters
+ id (required, string, `training-job-uuid`) ... The id of the training job.
### Training Job Logs [GET]
+ Request
+ Headers
Authorization: Token 527d11fe429f3426cb8dbeba183a0d80
+ Response 200 (text/plain)
# Group Prediction
Related resources of the **Prediction API**
## Classifiers Collection [/classifiers]
### Create a Classifier [POST]
+ Request (application/json)
+ Header
Authorization: Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==
+ Body
{
"specification-url": "http://s3.com/mnist_classifier.prototxt",
"training-job-id": "<training-job-id>",
"scale": "255",
"image-width": "28",
"image-height": "28",
"color": false,
"gpu": false
}
+ Response 201 (application/json)
{ "id": "classifier-uuid" }
## Classify an input [/classifiers/{id}/classify]
Classify an input image
+ Parameters
+ id (required, string, `classifier-uuid`) ... The id of the classifier
### Classify [POST]
+ Request (multipart/form-data; boundary=---BOUNDARY)
+ Header
Authorization: Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==
+ Body
-----BOUNDARY
Content-Disposition: form-data; name="urls"
http://s3.com/imageurl1.png
-----BOUNDARY
-----BOUNDARY
Content-Disposition: form-data; name="urls"
http://s3.com/imageurl2.png
-----BOUNDARY
-----BOUNDARY
Content-Disposition: form-data; name="files"; filename="imagefile1.png"
Content-Type: application/octet-stream
<raw file data>
-----BOUNDARY
-----BOUNDARY
Content-Disposition: form-data; name="files"; filename="imagefile2.png"
Content-Type: application/octet-stream
<raw file data>
-----BOUNDARY
+ Response 201 (application/json)
{
"id": "classification-job-uuid",
"processing-state": "pending"
}