diff options
author | Christian Hodgden <chrhodgden@gmail.com> | 2024-02-09 17:35:13 +0000 |
---|---|---|
committer | Christian Hodgden <chrhodgden@gmail.com> | 2024-02-09 17:35:13 +0000 |
commit | 75778c23de167946b8f567379da78c965aea9d87 (patch) | |
tree | 617ea5e99ba24bade21465e28889c239730a4854 /test/unit_tests/nnetwork.test.js | |
parent | 92a96a82b9029b00fbd4ccef1ff3970518db25bb (diff) |
replaces space indents with tab indents
Diffstat (limited to 'test/unit_tests/nnetwork.test.js')
-rw-r--r-- | test/unit_tests/nnetwork.test.js | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/test/unit_tests/nnetwork.test.js b/test/unit_tests/nnetwork.test.js index d7d9348..d09a0d7 100644 --- a/test/unit_tests/nnetwork.test.js +++ b/test/unit_tests/nnetwork.test.js @@ -4,23 +4,23 @@ const math = require('mathjs'); describe('Test NNetwork module', () => { - // let testConv = new BinaryConverter(2); - // let nodeCounts = [testConv._inputDigits, 3, testConv._outputDigits]; - // let afns = ['identity', 'relu', 'identity']; - - // let testNNetwork = new NNetwork(nodeCounts, afns, 0.1); - - // testConv.randomInput(); - // testNNetwork.forwardPropogation(testConv.inputActivation); - // testNNetwork.backPropogation(testConv.inputActivation, testConv.outputActivation); - - // testConv.randomInput(); - // testNNetwork.forwardPropogation(testConv.inputActivation); - // testNNetwork.backPropogation(testConv.inputActivation, testConv.outputActivation); - - // testNNetwork.gradientDescent(); + // let testConv = new BinaryConverter(2); + // let nodeCounts = [testConv._inputDigits, 3, testConv._outputDigits]; + // let afns = ['identity', 'relu', 'identity']; + + // let testNNetwork = new NNetwork(nodeCounts, afns, 0.1); + + // testConv.randomInput(); + // testNNetwork.forwardPropogation(testConv.inputActivation); + // testNNetwork.backPropogation(testConv.inputActivation, testConv.outputActivation); + + // testConv.randomInput(); + // testNNetwork.forwardPropogation(testConv.inputActivation); + // testNNetwork.backPropogation(testConv.inputActivation, testConv.outputActivation); + + // testNNetwork.gradientDescent(); - test.todo('NNetwork Tests'); + test.todo('NNetwork Tests'); }); |