Skip to content

Commit 351266e

Browse files
authored
Update README.md
1 parent 8a8496a commit 351266e

1 file changed

Lines changed: 3 additions & 28 deletions

File tree

README.md

Lines changed: 3 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -9,40 +9,15 @@ Started initially as C# port of [ConvNetJS](https://github.com/karpathy/convnetj
99

1010
Thank you very much to the original author of ConvNetJS (Andrej Karpathy) and to all the contributors!
1111

12-
## What's new ?
12+
3 ways to create neural network:
1313

14-
01/07/2017
15-
16-
- **ConvNetSharp.Flow**: A new way to create neural networks by defining a computation graph.
17-
There are now 3 ways of creating neural networks:
18-
19-
| Core.Layers | Flow.Layers | Pure Flow |
14+
| Core.Layers | Flow.Layers | Computation graph |
2015
| ------------- | ------------- | ------------- |
21-
| No computation graph | Layers that create a computation graph behind the scene | Computation graph |
16+
| No computation graph | Layers that create a computation graph behind the scene | 'Pure flow' |
2217
| Network organised by stacking layers | Network organised by stacking layers | 'Ops' connected to each others. Can implement more complex networks |
2318
| ![Layers](https://github.com/cbovar/ConvNetSharp/blob/master/img/structure.png) | ![Layers](https://github.com/cbovar/ConvNetSharp/blob/master/img/structure.png) | ![Layers](https://github.com/cbovar/ConvNetSharp/blob/master/img/graph.png) |
2419
| E.g. [MnistDemo](https://github.com/cbovar/ConvNetSharp/tree/master/Examples/MnistFlowGPUDemo) | E.g. [MnistFlowGPUDemo](https://github.com/cbovar/ConvNetSharp/tree/master/Examples/MnistDemo.Flow.GPU) or [Flow version of Classify2DDemo ](https://github.com/cbovar/ConvNetSharp/blob/master/Examples/FlowDemo/Classify2DDemo.cs) | E.g. [ExampleCpuSingle](https://github.com/cbovar/ConvNetSharp/blob/master/Examples/FlowDemo/ExampleCPUSingle.cs) |
2520

26-
27-
30/05/2017
28-
29-
- Available on [Nuget](https://www.nuget.org/packages/Cognitio.ConvNetSharp.Volume/) in pre-release (i.e. not stable)
30-
31-
20/05/2017
32-
33-
- vs 2017 and vs 2015 solutions are now both on the same branch (using same source code).
34-
35-
27/03/2017
36-
37-
- Volumes have their own project
38-
- Volumes have now 4 dimensions (width, height, channel, **batchSize**)
39-
- Generic on numerics to use single or double precision (`Net<double>` or `Net<float>`)
40-
- GPU implementation. Just add '`GPU`' in the namespace: `using ConvNetSharp.Volume.`**GPU**`.Single;`
41-
- ConvNetSharp.Volume and ConvNetSharp.Core are on .NET Standard
42-
- New way to serialize/deserialize. Basically Net object gives a nested dictionary that can be serialized the way you like.
43-
44-
Tag [v0.2.0](https://github.com/cbovar/ConvNetSharp/tree/v0.2.0) was created just before commiting new version.
45-
4621
## Example Code
4722

4823
Here's a minimum example of defining a **2-layer neural network** and training

0 commit comments

Comments
 (0)