deep-learning
deep-learning copied to clipboard
Simple example of using the Accord .NET C# library to implement a deep-learning neural network (deep belief network) with machine learning. Solves XOR and an ASCII digit dataset.
Results
1
deep-learning issues
Sort by
recently updated
recently updated
newest added
Hi, File Program.cs: In the "Test the resulting accuracy" part, it's better to replace all "inputs.Length" with "testInputs.Length". e.g. for (int i = 0; i < inputs.Length; i++) better be...