File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -69,6 +69,7 @@ require(['path/to/ml/dist/ml.min'], function (ML) {
69
69
* Matrix: [ ` ML.Matrix ` ] ( https://github.com/mljs/matrix )
70
70
* Sparse matrix: [ ` ML.SparseMatrix ` ] ( https://github.com/mljs/sparse-matrix )
71
71
* Kernels: [ ` ML.Kernel ` ] ( https://github.com/mljs/kernel )
72
+ * optimization: [ ` ML.Optimization ` ] ( https://github.com/mljs/optimization )
72
73
* Stat: [ ` ML.Stat ` ] ( https://github.com/mljs/stat )
73
74
* Array: ` ML.Stat.array `
74
75
* Matrix: ` ML.Stat.matrix `
Original file line number Diff line number Diff line change 31
31
"dependencies" : {
32
32
"ml-array-utils" : " ^0.2.4" ,
33
33
"ml-bit-array" : " ^1.0.0" ,
34
+ "ml-cross-validation" : " ^1.0.1" ,
35
+ "ml-curve-fitting" : " ^0.0.6" ,
34
36
"ml-distance" : " ^2.1.1" ,
35
37
"ml-fnn" : " ^2.1.0" ,
36
38
"ml-hash-table" : " ^0.2.0" ,
40
42
"ml-knn" : " ^1.0.0" ,
41
43
"ml-matrix" : " ^1.1.5" ,
42
44
"ml-naivebayes" : " ^1.0.1" ,
45
+ "ml-optimize-lorentzian" : " ^0.1.3" ,
43
46
"ml-pad-array" : " ^1.0.0" ,
44
47
"ml-pca" : " ^1.1.1" ,
45
48
"ml-performance" : " ^0.2.0" ,
51
54
"ml-stat" : " ^1.1.0" ,
52
55
"ml-svm" : " ^2.1.1" ,
53
56
"ml-xsadd" : " ^1.0.0" ,
54
- "ml-optimize-lorentzian" : " ^0.1.3" ,
55
- "ml-curve-fitting" : " ^0.0.6" ,
56
- "ml-cross-validation" : " ^1.0.1"
57
+ "optimization" : " 0.0.1"
57
58
},
58
59
"devDependencies" : {
59
60
"cheminfo-tools" : " ^1.0.1"
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ Math.SparseMatrix = require('ml-sparse-matrix');
21
21
Math . BellOptimizer = require ( 'ml-optimize-lorentzian' ) ;
22
22
Math . CurveFitting = require ( 'ml-curve-fitting' ) ;
23
23
Math . Kernel = require ( 'ml-kernel' ) ;
24
+ Math . Optimization = require ( 'optimization' ) ;
24
25
25
26
26
27
// Statistics packages
@@ -60,4 +61,3 @@ var NN = exports.NN = exports.nn = {};
60
61
61
62
NN . SOM = require ( 'ml-som' ) ;
62
63
NN . FNN = require ( 'ml-fnn' ) ;
63
-
You can’t perform that action at this time.
0 commit comments