mikegashler / waffles

A toolkit of machine learning algorithms.
http://gashler.com/mike/waffles/
86 stars 33 forks source link

No Test for Neural Net Layers #22

Open StephenAshmore opened 8 years ago

StephenAshmore commented 8 years ago

We are missing tests for GNeuralNet Layers. We have a small test for GNeuralNet, but nothing to test the individual layers themselves. While we typically trust most of our layers and such, we might start adding a bunch of crazy different layers and having a dedicated test for the layers will probably help us weed out mistakes and bugs.

thelukester92 commented 8 years ago

GLayerConvolutional2D is tested in GNeuralNet_test in GNeuralNet.cpp. I’m not sure about the other layers, though.

Luke

On Oct 24, 2016, at 1:23 PM, Stephen Ashmore notifications@github.com wrote:

We are missing tests for GNeuralNet Layers. We have a small test for GNeuralNet, but nothing to test the individual layers themselves. While we typically trust most of our layers and such, we might start adding a bunch of crazy different layers and having a dedicated test for the layers will probably help us weed out mistakes and bugs.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/mikegashler/waffles/issues/22, or mute the thread https://github.com/notifications/unsubscribe-auth/ABpaDANCFjfSJpgUava5ppdoyCDpifioks5q3PeSgaJpZM4KfHqF.

StephenAshmore commented 8 years ago

Considering the big changes in #31 and #26 I'm holding off on this issue for now, until that optimizer code is pushed in.