|
3 | 3 | <PropertyGroup> |
4 | 4 | <TargetFramework>netstandard2.0</TargetFramework> |
5 | 5 | <RootNamespace>NeuralNetworkNET</RootNamespace> |
6 | | - <Version>1.5.1</Version> |
| 6 | + <Version>2.0.0-beta1</Version> |
7 | 7 | <Authors>Sergio Pedri</Authors> |
8 | 8 | <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> |
10 | 10 | <Copyright>Copyright (c) 2017 Sergio Pedri</Copyright> |
11 | 11 | <PackageLicenseUrl>https://github.com/Sergio0694/NeuralNetwork.NET/blob/master/LICENSE.md</PackageLicenseUrl> |
12 | 12 | <PackageProjectUrl>https://github.com/Sergio0694/NeuralNetwork.NET</PackageProjectUrl> |
13 | 13 | <PackageIconUrl>https://i.pi.gy/73nG2.png</PackageIconUrl> |
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>• 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> |
23 | 20 | </PropertyGroup> |
24 | 21 |
|
25 | 22 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> |
|
38 | 35 | <RestoreProjectStyle>PackageReference</RestoreProjectStyle> |
39 | 36 | <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> |
40 | 37 | <GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType> |
41 | | - <AssemblyVersion>1.5.1.0</AssemblyVersion> |
| 38 | + <AssemblyVersion>2.0.0.0</AssemblyVersion> |
42 | 39 | <AssetTargetFallback> |
43 | 40 | $(AssetTargetFallback);net45 |
44 | 41 | </AssetTargetFallback> |
| 42 | + <FileVersion>2.0.0.0</FileVersion> |
45 | 43 | </PropertyGroup> |
46 | 44 |
|
47 | 45 | <ItemGroup> |
|
0 commit comments