Skip to content

Commit 6cab0fe

Browse files
author
Jefferson
committed
Add ml.NN.FNN.
1 parent f673eb9 commit 6cab0fe

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed

History.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
0.3.9 / 2015-07-07
2+
==================
3+
4+
* Add ml.NN.FNN
5+
16
0.3.8 / 2015-07-07
27
==================
38

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@
3636
"ml-stat": "1.0.1",
3737
"ml-svm": "1.0.2",
3838
"ml-array-utils": "0.1.0",
39-
"ml-savitzky-golay": "0.0.1"
39+
"ml-savitzky-golay": "0.0.1",
40+
"ml-fnn": "0.0.1"
4041
},
4142
"devDependencies": {
4243
"browserify": "^8.1.3",

src/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ Neural networks
3535
var NN = exports.NN = exports.nn = {};
3636

3737
NN.SOM = require('ml-som');
38+
NN.FNN = require('ml-fnn');
3839

3940
/*
4041
Array Utils

test/test.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ describe('ML', function () {
4545

4646
it('check NN', function () {
4747
ML.NN.should.have.properties([
48-
'SOM'
48+
'SOM',
49+
'FNN'
4950
]);
5051
});
5152

0 commit comments

Comments
 (0)