SVMSGD.java
7.79 KB
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
340
341
342
343
344
345
//
// This file is auto-generated. Please don't modify it!
//
package org.opencv.ml;
import java.lang.String;
import org.opencv.core.Mat;
import org.opencv.core.TermCriteria;
// C++: class SVMSGD
//javadoc: SVMSGD
public class SVMSGD extends StatModel {
protected SVMSGD(long addr) { super(addr); }
public static final int
SGD = 0,
ASGD = 1,
SOFT_MARGIN = 0,
HARD_MARGIN = 1;
//
// C++: Mat getWeights()
//
//javadoc: SVMSGD::getWeights()
public Mat getWeights()
{
Mat retVal = new Mat(getWeights_0(nativeObj));
return retVal;
}
//
// C++: static Ptr_SVMSGD create()
//
//javadoc: SVMSGD::create()
public static SVMSGD create()
{
SVMSGD retVal = new SVMSGD(create_0());
return retVal;
}
//
// C++: static Ptr_SVMSGD load(String filepath, String nodeName = String())
//
//javadoc: SVMSGD::load(filepath, nodeName)
public static SVMSGD load(String filepath, String nodeName)
{
SVMSGD retVal = new SVMSGD(load_0(filepath, nodeName));
return retVal;
}
//javadoc: SVMSGD::load(filepath)
public static SVMSGD load(String filepath)
{
SVMSGD retVal = new SVMSGD(load_1(filepath));
return retVal;
}
//
// C++: TermCriteria getTermCriteria()
//
//javadoc: SVMSGD::getTermCriteria()
public TermCriteria getTermCriteria()
{
TermCriteria retVal = new TermCriteria(getTermCriteria_0(nativeObj));
return retVal;
}
//
// C++: float getInitialStepSize()
//
//javadoc: SVMSGD::getInitialStepSize()
public float getInitialStepSize()
{
float retVal = getInitialStepSize_0(nativeObj);
return retVal;
}
//
// C++: float getMarginRegularization()
//
//javadoc: SVMSGD::getMarginRegularization()
public float getMarginRegularization()
{
float retVal = getMarginRegularization_0(nativeObj);
return retVal;
}
//
// C++: float getShift()
//
//javadoc: SVMSGD::getShift()
public float getShift()
{
float retVal = getShift_0(nativeObj);
return retVal;
}
//
// C++: float getStepDecreasingPower()
//
//javadoc: SVMSGD::getStepDecreasingPower()
public float getStepDecreasingPower()
{
float retVal = getStepDecreasingPower_0(nativeObj);
return retVal;
}
//
// C++: int getMarginType()
//
//javadoc: SVMSGD::getMarginType()
public int getMarginType()
{
int retVal = getMarginType_0(nativeObj);
return retVal;
}
//
// C++: int getSvmsgdType()
//
//javadoc: SVMSGD::getSvmsgdType()
public int getSvmsgdType()
{
int retVal = getSvmsgdType_0(nativeObj);
return retVal;
}
//
// C++: void setInitialStepSize(float InitialStepSize)
//
//javadoc: SVMSGD::setInitialStepSize(InitialStepSize)
public void setInitialStepSize(float InitialStepSize)
{
setInitialStepSize_0(nativeObj, InitialStepSize);
return;
}
//
// C++: void setMarginRegularization(float marginRegularization)
//
//javadoc: SVMSGD::setMarginRegularization(marginRegularization)
public void setMarginRegularization(float marginRegularization)
{
setMarginRegularization_0(nativeObj, marginRegularization);
return;
}
//
// C++: void setMarginType(int marginType)
//
//javadoc: SVMSGD::setMarginType(marginType)
public void setMarginType(int marginType)
{
setMarginType_0(nativeObj, marginType);
return;
}
//
// C++: void setOptimalParameters(int svmsgdType = SVMSGD::ASGD, int marginType = SVMSGD::SOFT_MARGIN)
//
//javadoc: SVMSGD::setOptimalParameters(svmsgdType, marginType)
public void setOptimalParameters(int svmsgdType, int marginType)
{
setOptimalParameters_0(nativeObj, svmsgdType, marginType);
return;
}
//javadoc: SVMSGD::setOptimalParameters()
public void setOptimalParameters()
{
setOptimalParameters_1(nativeObj);
return;
}
//
// C++: void setStepDecreasingPower(float stepDecreasingPower)
//
//javadoc: SVMSGD::setStepDecreasingPower(stepDecreasingPower)
public void setStepDecreasingPower(float stepDecreasingPower)
{
setStepDecreasingPower_0(nativeObj, stepDecreasingPower);
return;
}
//
// C++: void setSvmsgdType(int svmsgdType)
//
//javadoc: SVMSGD::setSvmsgdType(svmsgdType)
public void setSvmsgdType(int svmsgdType)
{
setSvmsgdType_0(nativeObj, svmsgdType);
return;
}
//
// C++: void setTermCriteria(TermCriteria val)
//
//javadoc: SVMSGD::setTermCriteria(val)
public void setTermCriteria(TermCriteria val)
{
setTermCriteria_0(nativeObj, val.type, val.maxCount, val.epsilon);
return;
}
@Override
protected void finalize() throws Throwable {
delete(nativeObj);
}
// C++: Mat getWeights()
private static native long getWeights_0(long nativeObj);
// C++: static Ptr_SVMSGD create()
private static native long create_0();
// C++: static Ptr_SVMSGD load(String filepath, String nodeName = String())
private static native long load_0(String filepath, String nodeName);
private static native long load_1(String filepath);
// C++: TermCriteria getTermCriteria()
private static native double[] getTermCriteria_0(long nativeObj);
// C++: float getInitialStepSize()
private static native float getInitialStepSize_0(long nativeObj);
// C++: float getMarginRegularization()
private static native float getMarginRegularization_0(long nativeObj);
// C++: float getShift()
private static native float getShift_0(long nativeObj);
// C++: float getStepDecreasingPower()
private static native float getStepDecreasingPower_0(long nativeObj);
// C++: int getMarginType()
private static native int getMarginType_0(long nativeObj);
// C++: int getSvmsgdType()
private static native int getSvmsgdType_0(long nativeObj);
// C++: void setInitialStepSize(float InitialStepSize)
private static native void setInitialStepSize_0(long nativeObj, float InitialStepSize);
// C++: void setMarginRegularization(float marginRegularization)
private static native void setMarginRegularization_0(long nativeObj, float marginRegularization);
// C++: void setMarginType(int marginType)
private static native void setMarginType_0(long nativeObj, int marginType);
// C++: void setOptimalParameters(int svmsgdType = SVMSGD::ASGD, int marginType = SVMSGD::SOFT_MARGIN)
private static native void setOptimalParameters_0(long nativeObj, int svmsgdType, int marginType);
private static native void setOptimalParameters_1(long nativeObj);
// C++: void setStepDecreasingPower(float stepDecreasingPower)
private static native void setStepDecreasingPower_0(long nativeObj, float stepDecreasingPower);
// C++: void setSvmsgdType(int svmsgdType)
private static native void setSvmsgdType_0(long nativeObj, int svmsgdType);
// C++: void setTermCriteria(TermCriteria val)
private static native void setTermCriteria_0(long nativeObj, int val_type, int val_maxCount, double val_epsilon);
// native support for java finalize()
private static native void delete(long nativeObj);
}