Skip to content

Commit 0ad3b92

Browse files
committed
Version 1.0.0
Master thesis submission
1 parent 77e80ce commit 0ad3b92

File tree

2 files changed

+34
-10
lines changed

2 files changed

+34
-10
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "predict-react",
3-
"version": "0.2.0",
3+
"version": "1.0.0",
44
"private": true,
55
"author": "Tõnis Kasekamp",
66
"devDependencies": {

stories/Validation.js

Lines changed: 33 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -94,36 +94,60 @@ export const classJobs = [
9494

9595
const regJobs = [
9696
{
97-
'id': 53,
97+
'id': 1073,
9898
'created_date': '2018-02-07T22:47:32.146583Z',
9999
'modified_date': '2018-02-07T22:47:32.149647Z',
100100
'config': {
101-
'encoding': {'method': 'simpleIndex', 'prefix_length': 1, 'padding': 'no_padding', 'generation_type': 'only'},
101+
'encoding': {'method': 'complex', 'prefix_length': 16, 'padding': 'no_padding', 'generation_type': 'only'},
102102
'clustering': 'noCluster',
103-
'method': 'linear',
103+
'method': 'lasso',
104104
'create_models': false,
105105
'label': label1,
106106
'hyperopt': {
107107
'use_hyperopt': false,
108108
'max_evals': 100,
109109
'performance_metric': 'rmse'
110110
},
111-
'regression.linear': {
111+
'regression.lasso': {
112112
'fit_intercept': true,
113113
'normalize': false,
114114
'copy_X': true
115115
}
116116
},
117117
'status': 'created',
118-
'result': {
119-
'mae': 1,
120-
'rmse': 2,
121-
'rscore': 3
118+
'result': {'rmse': 1316.1386475352517, 'mae': 933.93803112935666, 'rscore': -0.10448018564371164},
119+
'type': 'regression',
120+
'split_id': 1,
121+
'error': ''
122+
},
123+
{
124+
'id': 1240,
125+
'created_date': '2018-02-07T22:47:32.146583Z',
126+
'modified_date': '2018-02-07T22:47:32.149647Z',
127+
'config': {
128+
'encoding': {'method': 'complex', 'prefix_length': 16, 'padding': 'no_padding', 'generation_type': 'only'},
129+
'clustering': 'noCluster',
130+
'method': 'lasso',
131+
'create_models': false,
132+
'label': label1,
133+
'hyperopt': {
134+
'use_hyperopt': false,
135+
'max_evals': 100,
136+
'performance_metric': 'rmse'
137+
},
138+
'regression.lasso': {
139+
'fit_intercept': true,
140+
'normalize': false,
141+
'copy_X': true
142+
}
122143
},
144+
'status': 'created',
145+
'result': {'rmse': 1309.2985098872928, 'mae': 918.62048228654021, 'rscore': -0.093029773636106539},
123146
'type': 'regression',
124147
'split_id': 1,
125148
'error': ''
126-
}];
149+
}
150+
];
127151

128152
const labelJobs = [
129153
{

0 commit comments

Comments
 (0)