Skip to content

Commit bb8fa4d

Browse files
committed
Keras for .NET 0.1.0.
1 parent dff4f51 commit bb8fa4d

3 files changed

Lines changed: 10 additions & 7 deletions

File tree

src/TensorFlowNET.Console/TensorFlowNET.Console.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net5.0</TargetFramework>
5+
<TargetFramework>netcoreapp3.1</TargetFramework>
66
<RootNamespace>Tensorflow</RootNamespace>
77
<AssemblyName>Tensorflow</AssemblyName>
88
</PropertyGroup>

src/TensorFlowNET.Keras/Tensorflow.Keras.csproj

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,31 +12,34 @@
1212
<Copyright>Apache 2.0, Haiping Chen 2020</Copyright>
1313
<PackageId>TensorFlow.Keras</PackageId>
1414
<PackageProjectUrl>https://github.com/SciSharp/TensorFlow.NET</PackageProjectUrl>
15-
<PackageIconUrl>https://avatars3.githubusercontent.com/u/44989469?s=200&amp;v=4</PackageIconUrl>
15+
<PackageIcon>https://avatars3.githubusercontent.com/u/44989469?s=200&amp;v=4</PackageIcon>
1616
<RepositoryUrl>https://github.com/SciSharp/TensorFlow.NET</RepositoryUrl>
17-
<PackageReleaseNotes>Keras for .NET is a C# version of Keras migrated from the python version.</PackageReleaseNotes>
18-
<Description>Keras for .NET developers.
17+
<PackageReleaseNotes>Keras for .NET is a C# version of Keras ported from the python version.</PackageReleaseNotes>
18+
<Description>Keras for .NET
1919

2020
Keras is an API designed for human beings, not machines. Keras follows best practices for reducing cognitive load: it offers consistent &amp; simple APIs, it minimizes the number of user actions required for common use cases, and it provides clear &amp; actionable error messages.</Description>
2121
<Company>SciSharp STACK</Company>
2222
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
2323
<PackageTags>tensorflow, keras, deep learning, machine learning</PackageTags>
24+
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
25+
<RepositoryType>Git</RepositoryType>
2426
</PropertyGroup>
2527

2628
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
2729
<DefineConstants>DEBUG;TRACE</DefineConstants>
2830
</PropertyGroup>
2931

3032
<ItemGroup>
33+
<PackageReference Include="MethodBoundaryAspect.Fody" Version="2.0.138" />
3134
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
3235
</ItemGroup>
3336

3437
<ItemGroup>
35-
<ProjectReference Include="..\TensorFlowNET.Core\Tensorflow.Binding.csproj" />
38+
<Folder Include="Saving\" />
3639
</ItemGroup>
3740

3841
<ItemGroup>
39-
<Folder Include="Saving\" />
42+
<ProjectReference Include="..\TensorFlowNET.Core\Tensorflow.Binding.csproj" />
4043
</ItemGroup>
4144

4245
</Project>

src/TensorFlowNet.Benchmarks/Tensorflow.Benchmark.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net5.0</TargetFramework>
5+
<TargetFramework>netcoreapp3.1</TargetFramework>
66
<Platforms>AnyCPU;x64</Platforms>
77
</PropertyGroup>
88

0 commit comments

Comments
 (0)