File tree Expand file tree Collapse file tree 5 files changed +37
-2
lines changed Expand file tree Collapse file tree 5 files changed +37
-2
lines changed Original file line number Diff line number Diff line change
1
+ UNRELEASED
2
+ ==========
3
+
4
+ * Add ml.SL.SVM
5
+ :arrow_up : matrix v0.0.4
6
+
7
+ 0.2.3 / 2015-04-24
8
+ ==================
9
+
10
+ :arrow_up : ml-matrix v0.0.3
11
+
1
12
0.2.2 / 2015-03-16
2
13
==================
3
14
Original file line number Diff line number Diff line change @@ -68,13 +68,22 @@ See [ml-distance](https://github.com/mljs/distance)
68
68
69
69
See [ ml-stat] ( https://github.com/mljs/stat )
70
70
71
+ ### Supervised learning
72
+
73
+ ` ML.SL `
74
+
75
+ #### Support vector machines
76
+
77
+ ` ML.SL.SVM `
78
+ See [ ml-svm] ( https://github.com/mljs/svm )
79
+
71
80
### Neural networks
72
81
73
82
` ML.NN `
74
83
75
84
#### Self-organizing map
76
85
77
- ` ML.NN.SOM `
86
+ ` ML.NN.SOM `
78
87
See [ ml-som] ( https://github.com/mljs/som )
79
88
80
89
## License
Original file line number Diff line number Diff line change 31
31
"ml-distance" : " 1.0.0" ,
32
32
"ml-matrix" : " 0.0.4" ,
33
33
"ml-som" : " 0.0.6" ,
34
- "ml-stat" : " 1.0.1"
34
+ "ml-stat" : " 1.0.1" ,
35
+ "ml-svm" : " 1.0.1"
35
36
},
36
37
"devDependencies" : {
37
38
"browserify" : " ^8.1.3" ,
Original file line number Diff line number Diff line change @@ -13,6 +13,13 @@ var Stat = exports.Stat = {};
13
13
Stat . array = require ( 'ml-stat/array' ) ;
14
14
Stat . matrix = require ( 'ml-stat/matrix' ) ;
15
15
16
+ /*
17
+ Supervised learning
18
+ */
19
+ var SL = exports . SL = { } ;
20
+
21
+ SL . SVM = require ( 'ml-svm' ) ;
22
+
16
23
/*
17
24
Neural networks
18
25
*/
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ describe('ML', function () {
9
9
'Math' ,
10
10
'Matrix' ,
11
11
'Stat' ,
12
+ 'SL' ,
12
13
'NN'
13
14
] ) ;
14
15
} ) ;
@@ -27,6 +28,12 @@ describe('ML', function () {
27
28
] ) ;
28
29
} ) ;
29
30
31
+ it ( 'check SL' , function ( ) {
32
+ ML . SL . should . have . properties ( [
33
+ 'SVM'
34
+ ] ) ;
35
+ } ) ;
36
+
30
37
it ( 'check NN' , function ( ) {
31
38
ML . NN . should . have . properties ( [
32
39
'SOM'
You can’t perform that action at this time.
0 commit comments