Skip to content

Commit cf6febf

Browse files
committed
NuGet info updated, minor tweaks
1 parent b9b3eed commit cf6febf

File tree

2 files changed

+8
-10
lines changed

2 files changed

+8
-10
lines changed

NeuralNetwork.NET/Networks/Implementations/ComputationGraphNetwork.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ void Backward(IComputationGraphNode node)
261261
{
262262
if (processing.Parent is InputNode)
263263
{
264-
if (!linked) dy.TryFree();
264+
if (!linked) dMap[node] = dy; // Notify other branches, if present
265265
return; // No backpropagation required
266266
}
267267
Tensor.New(x.Entities, constant.InputInfo.Size, out Tensor dx);

NeuralNetwork.NET/NeuralNetwork.NET.csproj

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,20 @@
33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<RootNamespace>NeuralNetworkNET</RootNamespace>
6-
<Version>1.5.1</Version>
6+
<Version>2.0.0-beta1</Version>
77
<Authors>Sergio Pedri</Authors>
88
<Company>Sergio Pedri</Company>
9-
<Description>An easy to use CNN library, built from scratch in C# 7.2 for .NET Standard 2.0, with native memory management for better performance and additional GPU support with cuDNN</Description>
9+
<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>
1010
<Copyright>Copyright (c) 2017 Sergio Pedri</Copyright>
1111
<PackageLicenseUrl>https://github.com/Sergio0694/NeuralNetwork.NET/blob/master/LICENSE.md</PackageLicenseUrl>
1212
<PackageProjectUrl>https://github.com/Sergio0694/NeuralNetwork.NET</PackageProjectUrl>
1313
<PackageIconUrl>https://i.pi.gy/73nG2.png</PackageIconUrl>
1414
<PackageTags>cnn, neuralnetwork, deeplearning, ai, cuda, csharp, gpu, net, netstandard</PackageTags>
1515
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1616
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
17-
<PackageReleaseNotes>• New optimizers added (Adam, AdaMax, RMSProp, Momentum and more)
18-
• MNIST, CIFAR-10 and CIFAR-100 datasets added
19-
• Added APIs to partition a training dataset
20-
• Added new distance-based accuracy tester
21-
• APIs refactoring and improvements
22-
• Bug fixes and speed optimizations</PackageReleaseNotes>
17+
<PackageReleaseNotes>• Added computation graph networks (eg. ResNet, Inception)
18+
• New dataset manipulation APIs
19+
• Bug fixes and code improvements</PackageReleaseNotes>
2320
</PropertyGroup>
2421

2522
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
@@ -38,10 +35,11 @@
3835
<RestoreProjectStyle>PackageReference</RestoreProjectStyle>
3936
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
4037
<GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType>
41-
<AssemblyVersion>1.5.1.0</AssemblyVersion>
38+
<AssemblyVersion>2.0.0.0</AssemblyVersion>
4239
<AssetTargetFallback>
4340
$(AssetTargetFallback);net45
4441
</AssetTargetFallback>
42+
<FileVersion>2.0.0.0</FileVersion>
4543
</PropertyGroup>
4644

4745
<ItemGroup>

0 commit comments

Comments
 (0)