|
3 | 3 | <PropertyGroup> |
4 | 4 | <TargetFramework>netstandard2.0</TargetFramework> |
5 | 5 | <RootNamespace>NeuralNetworkNET</RootNamespace> |
6 | | - <Version>2.0.0</Version> |
| 6 | + <Version>2.1.0</Version> |
7 | 7 | <Authors>Sergio Pedri</Authors> |
8 | 8 | <Company>Sergio Pedri</Company> |
9 | 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> |
|
14 | 14 | <PackageTags>cnn, neuralnetwork, deeplearning, ai, cuda, csharp, gpu, net, netstandard</PackageTags> |
15 | 15 | <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
16 | 16 | <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> |
20 | 20 | </PropertyGroup> |
21 | 21 |
|
22 | 22 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> |
|
35 | 35 | <RestoreProjectStyle>PackageReference</RestoreProjectStyle> |
36 | 36 | <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> |
37 | 37 | <GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType> |
38 | | - <AssemblyVersion>2.0.0.0</AssemblyVersion> |
| 38 | + <AssemblyVersion>2.1.0.0</AssemblyVersion> |
39 | 39 | <AssetTargetFallback> |
40 | 40 | $(AssetTargetFallback);net45 |
41 | 41 | </AssetTargetFallback> |
42 | | - <FileVersion>2.0.0.0</FileVersion> |
| 42 | + <FileVersion>2.1.0.0</FileVersion> |
43 | 43 | </PropertyGroup> |
44 | 44 |
|
45 | 45 | <ItemGroup> |
|
0 commit comments