summaryrefslogtreecommitdiff
path: root/test/unit_tests/layer.test.js
diff options
context:
space:
mode:
authorChristian Hodgden <chrhodgden@gmail.com>2024-02-09 17:35:13 +0000
committerChristian Hodgden <chrhodgden@gmail.com>2024-02-09 17:35:13 +0000
commit75778c23de167946b8f567379da78c965aea9d87 (patch)
tree617ea5e99ba24bade21465e28889c239730a4854 /test/unit_tests/layer.test.js
parent92a96a82b9029b00fbd4ccef1ff3970518db25bb (diff)
replaces space indents with tab indents
Diffstat (limited to 'test/unit_tests/layer.test.js')
-rw-r--r--test/unit_tests/layer.test.js26
1 files changed, 13 insertions, 13 deletions
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');
});