Skip to content

Commit

Permalink
add ml-fcnnls
Browse files Browse the repository at this point in the history
  • Loading branch information
lpatiny committed Aug 20, 2019
1 parent 9d3bd15 commit 994b290
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ It will be available as the global `ML` variable. The package is in UMD format.
### Optimization

- Levenberg-Marquardt: [`ML.levenbergMarquardt`](https://github.com/mljs/levenberg-marquardt)
- Fast Combinatorial Non-negative Least Squares: [`ML.FCNNLS`](https://github.com/mljs/fcnnls)

### Math

Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@
"ml-cross-validation": "^1.2.0",
"ml-distance": "^3.0.0",
"ml-distance-matrix": "^2.0.0",
"ml-fcnnls": "^1.0.0",
"ml-fnn": "^5.0.0",
"ml-hash-table": "^1.0.0",
"ml-hclust": "^3.0.0",
Expand Down
2 changes: 2 additions & 0 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ export { RandomForestRegression };

// Optimization
export { default as levenbergMarquardt } from 'ml-levenberg-marquardt';
import * as FCNNLS from 'ml-fcnnls';
export { FCNNLS };

// Math
import * as MatrixLib from 'ml-matrix';
Expand Down

0 comments on commit 994b290

Please sign in to comment.