File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -9,9 +9,9 @@ Machine learning tools
9
9
10
10
## Introduction
11
11
12
- This library is a compilation of the tools developed in the [ mljs] ( https://github.com/mljs ) organization.
12
+ This library is a compilation of the tools developed in the [ mljs] ( https://github.com/mljs ) organization.
13
13
It is mainly maintained for use in the browser. If you are working with Node.js, you might prefer to add
14
- to your dependencies only the libraries that you need, as they are usually published to npm more often.
14
+ to your dependencies only the libraries that you need, as they are usually published to npm more often.
15
15
We prefix all our npm package names with ` ml- ` (eg. ml-matrix) so they are easy to find.
16
16
17
17
## Installation
@@ -62,6 +62,7 @@ require(['path/to/ml/dist/ml.min'], function (ML) {
62
62
* Matrix: [ ` ML.Matrix ` ] ( https://github.com/mljs/matrix )
63
63
* Pad array: [ ` ML.PadArray ` ] ( https://github.com/mljs/pad-array )
64
64
* Regression: [ ` ML.Regression ` ] ( https://github.com/mljs/regression )
65
+ * Binary search: [ ` ML.BinarySearch ` ] ( https://github.com/mljs/binary-search )
65
66
* Math: ` ML.Math `
66
67
* Distance: [ ` ML.Math.Distance ` ] ( https://github.com/mljs/distance )
67
68
* Similarity: [ ` ML.Math.Similarity ` ] ( https://github.com/mljs/distance )
Original file line number Diff line number Diff line change 30
30
"homepage" : " https://github.com/mljs/ml" ,
31
31
"dependencies" : {
32
32
"ml-array-utils" : " ^0.2.4" ,
33
+ "ml-binary-search" : " ^1.1.0" ,
33
34
"ml-bit-array" : " ^1.0.0" ,
34
35
"ml-cross-validation" : " ^1.0.1" ,
35
36
"ml-curve-fitting" : " ^0.0.7" ,
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ exports.HashTable = require('ml-hash-table');
7
7
exports . Matrix = require ( 'ml-matrix' ) ;
8
8
exports . PadArray = require ( 'ml-pad-array' ) ;
9
9
exports . Regression = require ( 'ml-regression' ) ;
10
+ exports . BinarySearch = require ( 'ml-binary-search' ) ;
10
11
11
12
12
13
// Math packages
You can’t perform that action at this time.
0 commit comments