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/layer.test.js | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'test/unit_tests/layer.test.js') diff --git a/test/unit_tests/layer.test.js b/test/unit_tests/layer.test.js index d7dcdb8..c570ceb 100644 --- a/test/unit_tests/layer.test.js +++ b/test/unit_tests/layer.test.js @@ -4,19 +4,19 @@ const math = require('mathjs'); describe('Test Layer module', () => { - let testLayer = new Layer(2, 3, 'relu'); - let testConv = new BinaryConverter(2); - - testConv.randomInput() - testLayer.forwardPropogation(testConv.inputActivation); - - testLayer = new Layer(2, 3, 'sigmoid'); - testLayer.forwardPropogation(testConv.inputActivation); - - testLayer = new Layer(2, 3, 'identity'); - testLayer.forwardPropogation(testConv.inputActivation); - - test.todo('Layer Tests'); + let testLayer = new Layer(2, 3, 'relu'); + let testConv = new BinaryConverter(2); + + testConv.randomInput() + testLayer.forwardPropogation(testConv.inputActivation); + + testLayer = new Layer(2, 3, 'sigmoid'); + testLayer.forwardPropogation(testConv.inputActivation); + + testLayer = new Layer(2, 3, 'identity'); + testLayer.forwardPropogation(testConv.inputActivation); + + test.todo('Layer Tests'); }); -- cgit v1.2.3