This repository has been archived by the owner on Sep 14, 2018. It is now read-only.
forked from matthiaskramm/mrscake
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmodel.c
223 lines (209 loc) · 5.17 KB
/
model.c
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
/* model.c
Data prediction top level interface implementation.
Part of the data prediction package.
Copyright (c) 2010-2011 Matthias Kramm <[email protected]>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#include <stdlib.h>
#include <memory.h>
#include "mrscake.h"
#include "ast.h"
#include "io.h"
#include "stringpool.h"
variable_t variable_new_categorical(category_t c)
{
variable_t v;
v.type = CATEGORICAL;
v.category = c;
return v;
}
variable_t variable_new_continuous(float f)
{
variable_t v;
v.type = CONTINUOUS;
v.value = f;
return v;
}
variable_t variable_new_text(const char*s)
{
variable_t v;
v.type = TEXT;
v.text = register_string(s);
return v;
}
variable_t variable_new_missing()
{
variable_t v;
v.type = MISSING;
v.value = __builtin_nan("");
return v;
}
const char*variable_type(variable_t*v)
{
switch(v->type) {
case CATEGORICAL:
return "category";
break;
case CONTINUOUS:
return "float";
break;
case TEXT:
return "text";
break;
default:
return "invalid";
break;
}
}
void variable_print(variable_t*v, FILE*stream)
{
switch(v->type) {
case CATEGORICAL:
fprintf(stream, "C%d", v->category);
break;
case CONTINUOUS:
fprintf(stream, "%.2f", v->value);
break;
case TEXT:
fprintf(stream, "\"%s\"", v->text);
break;
default:
fprintf(stream, "<INVALID TYPE %d>", v->type);
break;
}
}
bool variable_equals(variable_t*v1, variable_t*v2)
{
if(v1->type != v2->type)
return false;
switch(v1->type) {
case CATEGORICAL:
return v1->category==v2->category;
case CONTINUOUS:
return v1->value==v2->value;
case TEXT:
return !strcmp(v1->text, v2->text);
default:
return false;
}
}
double variable_value(variable_t*v)
{
return (v->type == CATEGORICAL) ? v->category : v->value;
}
example_t*example_new(int num_inputs)
{
example_t*r = (example_t*)malloc(sizeof(example_t)+sizeof(variable_t)*num_inputs);
r->input_names = 0;
r->num_inputs = num_inputs;
return r;
}
row_t*example_to_row(example_t*e, const char**column_names)
{
row_t*r = row_new(e->num_inputs);
if(e->input_names && !column_names) {
fprintf(stderr, "can't convert example data with input names to row\n");
return 0;
}
memcpy(r->inputs, e->inputs, sizeof(variable_t)*e->num_inputs);
return r;
}
void example_destroy(example_t*example)
{
if(example->input_names) {
free(example->input_names);
}
free(example);
}
row_t*row_new(int num_inputs)
{
row_t*r = (row_t*)malloc(sizeof(row_t)+sizeof(variable_t)*num_inputs);
r->num_inputs = num_inputs;
return r;
}
void row_print(row_t*row)
{
int t;
for(t=0;t<row->num_inputs;t++) {
variable_print(&row->inputs[t], stdout);
printf("\t");
}
printf("\n");
}
void row_destroy(row_t*row)
{
free(row);
}
void columntype_print(columntype_t c)
{
switch(c) {
case CATEGORICAL:
printf("category_t");
break;
case CONTINUOUS:
printf("float");
break;
case TEXT:
printf("char*");
break;
case MISSING:
printf("<missing>");
break;
default:
printf("<undefined>");
break;
}
}
void signature_print(signature_t*sig)
{
int t;
for(t=0;t<sig->num_inputs;t++) {
if(t)
printf(", ");
columntype_print(sig->column_types[t]);
if(sig->column_names) {
printf(" %s", sig->column_names[t]);
}
}
printf("\n");
}
void model_print(model_t*m)
{
printf("------------ params -----------\n");
signature_print(m->sig);
node_print((node_t*)m->code);
}
void signature_destroy(signature_t*s)
{
if(s->column_types)
free(s->column_types);
if(s->column_names)
free(s->column_names);
free(s);
}
variable_t model_predict(model_t*m, row_t*row)
{
node_t*code = (node_t*)m->code;
environment_t*e = environment_new(code, row);
constant_t c = node_eval(code, e);
environment_destroy(e);
return constant_to_variable(&c);
}
void model_destroy(model_t*m)
{
if(m->code)
node_destroy(m->code);
free(m);
/* FIXME: since the signature is originally part of the dataset,
we can't destroy it here. */
//signature_destroy(m->sig);
}