You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-5Lines changed: 6 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,7 @@
1
1

2
2
3
3
# What is it?
4
+
4
5
**NeuralNetwork.NET** is a .NET Standard 2.0 library that implements a Convolutional Neural Network with customizable layers, built from scratch with C#.
5
6
It provides simple APIs to define a CNN structure and to train the network using Stochastic Gradient Descent, as well as methods to save/load a network and its metadata and more.
6
7
@@ -28,10 +29,10 @@ More details available [here](https://www.nuget.org/packages/NeuralNetwork.NET/)
28
29
29
30
# Quick start
30
31
31
-
### Supervised learning
32
-
33
32
The **NeuralNetwork.NET** library exposes easy to use classes and methods to create a new neural network, prepare the datasets to use and train the network. These APIs are designed for rapid prototyping, and this section provides an overview of the required steps to get started.
34
33
34
+
## Supervised learning
35
+
35
36
The first step is to create a custom network structure. Here is an example with a sequential network (a stack of layers):
36
37
37
38
```C#
@@ -77,7 +78,7 @@ TrainingSessionResult result = NetworkManager.TrainNetwork(network,
0 commit comments