Skip to content

Commit 350b517

Browse files
committed
NuGet info updated
1 parent 415ffe1 commit 350b517

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

NeuralNetwork.NET/NeuralNetwork.NET.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<RootNamespace>NeuralNetworkNET</RootNamespace>
6-
<Version>2.0.0</Version>
6+
<Version>2.1.0</Version>
77
<Authors>Sergio Pedri</Authors>
88
<Company>Sergio Pedri</Company>
99
<Description>A TensorFlow-inspired neural network library built from scratch in C# 7.2 for .NET Standard 2.0, with GPU support through cuDNN and native memory management</Description>
@@ -14,9 +14,9 @@
1414
<PackageTags>cnn, neuralnetwork, deeplearning, ai, cuda, csharp, gpu, net, netstandard</PackageTags>
1515
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1616
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
17-
<PackageReleaseNotes>• Added computation graph networks (eg. ResNet, Inception)
18-
New dataset manipulation APIs
19-
• Bug fixes and code improvements</PackageReleaseNotes>
17+
<PackageReleaseNotes>• Added batch normalization layers
18+
APIs refactoring and improvements
19+
• Bug fixes</PackageReleaseNotes>
2020
</PropertyGroup>
2121

2222
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
@@ -35,11 +35,11 @@
3535
<RestoreProjectStyle>PackageReference</RestoreProjectStyle>
3636
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
3737
<GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType>
38-
<AssemblyVersion>2.0.0.0</AssemblyVersion>
38+
<AssemblyVersion>2.1.0.0</AssemblyVersion>
3939
<AssetTargetFallback>
4040
$(AssetTargetFallback);net45
4141
</AssetTargetFallback>
42-
<FileVersion>2.0.0.0</FileVersion>
42+
<FileVersion>2.1.0.0</FileVersion>
4343
</PropertyGroup>
4444

4545
<ItemGroup>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ Some complex network structures, like residual networks or inception modules , c
113113
Computation graph networks are created using the `NetworkManager.NewGraph` API, here's an example:
114114

115115
```C#
116-
INeuralNetwork network = NetworkManager.NewGraph(TensorInfo.Image<Alpha8>(28, 28), root =>
116+
INeuralNetwork network = NetworkManager.NewGraph(TensorInfo.Image<Rgb24>(32,32), root =>
117117
{
118118
var conv1 = root.Layer(CuDnnNetworkLayers.Convolutional((5, 5), 20, ActivationType.Identity));
119119
var pool1 = conv1.Layer(CuDnnNetworkLayers.Pooling(ActivationType.ReLU));

0 commit comments

Comments
 (0)