From 75778c23de167946b8f567379da78c965aea9d87 Mon Sep 17 00:00:00 2001 From: Christian Hodgden Date: Fri, 9 Feb 2024 17:35:13 +0000 Subject: replaces space indents with tab indents --- test/unit_tests/nnetwork.test.js | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) (limited to 'test/unit_tests/nnetwork.test.js') 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'); }); -- cgit v1.2.3