-
Notifications
You must be signed in to change notification settings - Fork 2
/
svm.cpp.patch
188 lines (176 loc) · 4.81 KB
/
svm.cpp.patch
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
// Portions of the code are licensed under the BSD 3-Clause License:
// Copyright (c) 2000-2017 Chih-Chung Chang and Chih-Jen Lin
// All rights reserved.
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 1. Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
// 3. Neither name of copyright holders nor the names of its contributors
// may be used to endorse or promote products derived from this software
// without specific prior written permission.
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
// Relicensed under the MIT:
// Algorithm::LibSVM -- A Raku bindings for libsvm
// Copyright(C) 2017 titsuki <[email protected]>
// For more details, see the "LICENSE" file.
--- src/3.22/svm.cpp 2019-03-16 16:25:24.653836819 +0900
+++ src/svm.cpp 2019-03-16 23:59:28.330521083 +0900
@@ -246,7 +246,10 @@
}
double kernel_precomputed(int i, int j) const
{
- return x[i][(int)(x[j][0].value)].value;
+ const struct svm_node *ptr;
+ int counter = (int)x[j]->value;
+ ptr = x[i]; while (counter-- > 0) ptr = ptr->next;
+ return ptr->value;
}
};
@@ -299,15 +302,15 @@
if(px->index == py->index)
{
sum += px->value * py->value;
- ++px;
- ++py;
+ px = px->next;
+ py = py->next;
}
else
{
if(px->index > py->index)
- ++py;
+ py = py->next;
else
- ++px;
+ px = px->next;
}
}
return sum;
@@ -331,20 +334,20 @@
{
double d = x->value - y->value;
sum += d*d;
- ++x;
- ++y;
+ x = x->next;
+ y = y->next;
}
else
{
if(x->index > y->index)
{
sum += y->value * y->value;
- ++y;
+ y = y->next;
}
else
{
sum += x->value * x->value;
- ++x;
+ x = x->next;
}
}
}
@@ -352,13 +355,13 @@
while(x->index != -1)
{
sum += x->value * x->value;
- ++x;
+ x = x->next;
}
while(y->index != -1)
{
sum += y->value * y->value;
- ++y;
+ y = y->next;
}
return exp(-param.gamma*sum);
@@ -366,7 +369,11 @@
case SIGMOID:
return tanh(param.gamma*dot(x,y)+param.coef0);
case PRECOMPUTED: //x: test (validation), y: SV
- return x[(int)(y->value)].value;
+ {
+ int counter = (int)(y->value);
+ while (counter-- > 0) x = x->next;
+ return x->value;
+ }
default:
return 0; // Unreachable
}
@@ -1965,7 +1972,7 @@
// ensure +1 -1 order; reason not using CV subroutine
dec_values[perm[j]] *= submodel->label[0];
}
- svm_free_and_destroy_model(&submodel);
+ svm_free_and_destroy_model(submodel);
svm_destroy_param(&subparam);
}
free(subprob.x);
@@ -2448,7 +2455,7 @@
else
for(j=begin;j<end;j++)
target[perm[j]] = svm_predict(submodel,prob->x[perm[j]]);
- svm_free_and_destroy_model(&submodel);
+ svm_free_and_destroy_model(submodel);
free(subprob.x);
free(subprob.y);
}
@@ -2729,7 +2736,7 @@
while(p->index != -1)
{
fprintf(fp,"%d:%.8g ",p->index,p->value);
- p++;
+ p = p->next;
}
fprintf(fp, "\n");
}
@@ -2975,7 +2982,7 @@
break;
x_space[j].index = (int) strtol(idx,&endptr,10);
x_space[j].value = strtod(val,&endptr);
-
+ x_space[j].next = &x_space[j + 1];
++j;
}
x_space[j++].index = -1;
@@ -3027,13 +3034,13 @@
model_ptr->nSV = NULL;
}
-void svm_free_and_destroy_model(svm_model** model_ptr_ptr)
+void svm_free_and_destroy_model(svm_model* model_ptr)
{
- if(model_ptr_ptr != NULL && *model_ptr_ptr != NULL)
+ if(model_ptr != NULL)
{
- svm_free_model_content(*model_ptr_ptr);
- free(*model_ptr_ptr);
- *model_ptr_ptr = NULL;
+ svm_free_model_content(model_ptr);
+ free(model_ptr);
+ model_ptr = NULL;
}
}
@@ -3179,3 +3186,8 @@
else
svm_print_string = print_func;
}
+
+void svm_set_srand(int seed)
+{
+ srand(seed);
+}