-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathservice.go
246 lines (226 loc) · 8.08 KB
/
service.go
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
package godd
import (
"bytes"
"encoding/json"
"io/ioutil"
"net/http"
)
// Status struct storing requests execution results
type Status struct {
Status struct {
Code int `json:"code,omitempty"`
Msg string `json:"msg,omitempty"`
} `json:"status,omitempty"`
}
// ServiceRequest hold data for the service creation request
// See: https://deepdetect.com/api/#create-a-service
type ServiceRequest struct {
// General parameters
Name string
Mllib string `json:"mllib,omitempty"`
Type string `json:"type,default=supervised"`
Description string `json:"description,omitempty"`
// Model
Model struct {
Repository string `json:"repository,omitempty"`
Templates string `json:"templates,omitempty"`
Init string `json:"init,omitempty"`
Weights string `json:"weights,omitempty"`
CreateRepository bool `json:"create_repository,omitempty"`
IndexPreload bool `json:"index_preload,omitempty"`
Extensions []string `json:"extensions,omitempty"`
} `json:"model,omitempty"`
Parameters struct {
Input struct {
// Input
Connector string `json:"connector,omitempty"`
// Input - image
Width int `json:"width,omitempty"`
Height int `json:"height,omitempty"`
BW bool `json:"bw,omitempty"`
MeanTS float64 `json:"mean,omitempty"`
Mean []float64 `json:"mean,omitempty"`
STD float64 `json:"std,omitempty"`
Segmentation bool `json:"segmentation,omitempty"`
MultiLabel bool `json:"multi_label,omitempty"`
RootFolder string `json:"root_folder,omitempty"`
CTC bool `json:"ctc,omitempty"`
UnchangedData bool `json:"unchanged_data,omitempty"`
Bbox bool `json:"bbox,omitempty"`
// Input - CSV
Label string `json:"label,omitempty"`
Ignore []string `json:"ignore,omitempty"`
LabelOffset int `json:"label_offset,omitempty"`
Separator string `json:"separator,omitempty"`
ID string `json:"id,omitempty"`
Scale bool `json:"scale,omitempty"`
Categoricals []string `json:"categoricals,omitempty"`
DB bool `json:"db,omitempty"`
// Input - TXT
Sentences bool `json:"sentences,omitempty"`
Characters bool `json:"characters,omitempty"`
Sequence int `json:"sequence,omitempty"`
ReadForward bool `json:"read_forward,omitempty"`
Alphabet string `json:"alphabet,omitempty"`
Sparse bool `json:"sparse,omitempty"`
} `json:"input,omitempty"`
Mllib struct {
// Caffe and Caffe2
Nclasses int `json:"nclasses,omitempty"`
Ntargets int `json:"ntargets,omitempty"`
GPU bool `json:"gpu,omitempty"`
GPUID []int `json:"gpuid,omitempty"`
Template string `json:"template,omitempty"`
LayersMLP []int `json:"layers,omitempty"`
LayersConvnet []string `json:"layers,omitempty"`
Activation string `json:"activation,omitempty"`
Dropout float64 `json:"dropout,omitempty"`
Regression bool `json:"regression,omitempty"`
Autoencoder bool `json:"autoencoder,omitempty"`
CropSize int `json:"crop_size,omitempty"`
Rotate bool `json:"rotate,omitempty"`
Mirror bool `json:"mirror,omitempty"`
Finetuning bool `json:"finetuning,omitempty"`
DB bool `json:"db,omitempty"`
ScalingTemperature float64 `json:"scaling_temperature,omitempty"`
Loss string `json:"loss,omitempty"`
// Noise - images only
Prob float64 `json:"prob,omitempty"`
AllEffects bool `json:"all_effects,omitempty"`
Decolorize bool `json:"decolorize,omitempty"`
HistEQ bool `json:"hist_eq,omitempty"`
Inverse bool `json:"inverse,omitempty"`
GaussBlur bool `json:"gauss_blur,omitempty"`
Posterize bool `json:"posterize,omitempty"`
Erode bool `json:"erode,omitempty"`
Saltpepper bool `json:"saltpepper,omitempty"`
Clahe bool `json:"clahe,omitempty"`
ConvertToHSV bool `json:"convert_to_hsv,omitempty"`
ConvertToLAB bool `json:"convert_to_lab,omitempty"`
// Distort - images only
Brightness bool `json:"brightness,omitempty"`
Contrast bool `json:"contrast,omitempty"`
Saturation bool `json:"saturation,omitempty"`
HUE bool `json:"HUE,omitempty"`
RandomOrdering bool `json:"random ordering,omitempty,omitempty"`
// TensorFlow
InputLayer string `json:"inputlayer,omitempty"`
OutputLayer string `json:"outputlayer,omitempty"`
// Memory
Datatype string `json:"datatype,omitempty"`
MaxBatchSize int `json:"maxBatchSize,omitempty"`
MaxWorkspaceSize int `json:"maxWorkspaceSize,omitempty"`
} `json:"mllib,omitempty"`
Output struct {
StoreConfig bool `json:"store_config,omitempty"`
} `json:"output,omitempty"`
} `json:"parameters,omitempty"`
}
// ServiceInfo structure contain informations
// fetched by the GetServiceInfo function
type ServiceInfo struct {
Status struct {
Code int `json:"code,omitempty"`
Msg string `json:"msg,omitempty"`
} `json:"status,omitempty"`
Body struct {
Mllib string `json:"mllib,omitempty"`
Description string `json:"description,omitempty"`
Name string `json:"name,omitempty"`
Jobs []struct {
Job int `json:"job,omitempty"`
Status string `json:"status,omitempty"`
} `json:"jobs,omitempty"`
} `json:"body,omitempty"`
}
// CreateService create a service using the
// /services endpoint, it takes the host and
// a *ServiceRequest as input and return a
// *CreationResult structure.
func CreateService(host string, service *ServiceRequest) (result *Status, err error) {
if service.Type == "" {
service.Type = "supervised"
}
requestCreate := map[string]interface{}{
"mllib": service.Mllib,
"description": service.Description,
"type": service.Type,
"parameters": service.Parameters,
"model": service.Model,
}
bytesReq, err := json.Marshal(requestCreate)
if err != nil {
return result, err
}
// Send HTTP request
req, err := http.NewRequest("PUT", host+"/services/"+service.Name, bytes.NewBuffer(bytesReq))
req.Close = true
req.Header.Set("Content-Type", "application/json")
// Execute request
resp, err := httpClient.Do(req)
if err != nil {
return result, err
}
defer resp.Body.Close()
// Read response
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
return result, err
}
// Fill info structure with response data
err = json.Unmarshal(body, &result)
if err != nil {
return result, err
}
return result, err
}
// GetServiceInfo fetch service informations using
// the /services/<service_name> endpoint
// It takes the host and the service name as input,
// and return a *ServiceInfo structure.
func GetServiceInfo(host string, service string) (info *ServiceInfo, err error) {
// Perform GET request on /services/<service_name>
resp, err := http.Get(host + "/services/" + service)
if err != nil {
return info, err
}
// Read response
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
return info, err
}
// Fill info structure with response data
err = json.Unmarshal(body, &info)
if err != nil {
return info, err
}
return info, nil
}
// DeleteService delete a service using the
// /services/<service_name> endpoint, it takes
// the host and a service name as input and return
// a *Status structure.
func DeleteService(host string, service string) (status *Status, err error) {
// Create DELETE request
req, err := http.NewRequest("DELETE", host+"/services/"+service, nil)
if err != nil {
return status, err
}
// Execute request
resp, err := httpClient.Do(req)
if err != nil {
return status, err
}
defer resp.Body.Close()
// Read response body
respBody, err := ioutil.ReadAll(resp.Body)
if err != nil {
return status, err
}
// Fill info structure with response data
err = json.Unmarshal(respBody, &status)
if err != nil {
return status, err
}
return status, nil
}