Skip to content

Commit d515c81

Browse files
committed
Upgrade NumSharp to v0.20-alpha1
1 parent 1961e81 commit d515c81

4 files changed

Lines changed: 6 additions & 34 deletions

File tree

TensorFlow.NET.sln

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TensorFlowDatasets", "src\T
2323
EndProject
2424
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TensorFlowNET.Examples.GPU", "test\TensorFlowNET.Examples\TensorFlowNET.Examples.GPU.csproj", "{6F6B3382-8F87-4CD9-BF87-C81D5405685A}"
2525
EndProject
26-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NumSharp.Core", "..\NumSharp\src\NumSharp.Core\NumSharp.Core.csproj", "{4E3C61B7-D6F7-4E8F-B74A-47B6CD40D838}"
27-
EndProject
2826
Global
2927
GlobalSection(SolutionConfigurationPlatforms) = preSolution
3028
Debug|Any CPU = Debug|Any CPU
@@ -71,10 +69,6 @@ Global
7169
{6F6B3382-8F87-4CD9-BF87-C81D5405685A}.Debug|Any CPU.Build.0 = Debug|Any CPU
7270
{6F6B3382-8F87-4CD9-BF87-C81D5405685A}.Release|Any CPU.ActiveCfg = Release|Any CPU
7371
{6F6B3382-8F87-4CD9-BF87-C81D5405685A}.Release|Any CPU.Build.0 = Release|Any CPU
74-
{4E3C61B7-D6F7-4E8F-B74A-47B6CD40D838}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
75-
{4E3C61B7-D6F7-4E8F-B74A-47B6CD40D838}.Debug|Any CPU.Build.0 = Debug|Any CPU
76-
{4E3C61B7-D6F7-4E8F-B74A-47B6CD40D838}.Release|Any CPU.ActiveCfg = Release|Any CPU
77-
{4E3C61B7-D6F7-4E8F-B74A-47B6CD40D838}.Release|Any CPU.Build.0 = Release|Any CPU
7872
EndGlobalSection
7973
GlobalSection(SolutionProperties) = preSolution
8074
HideSolutionNode = FALSE

src/TensorFlowHub/TensorFlowHub.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
<PackageIconUrl>https://avatars3.githubusercontent.com/u/44989469?s=200&amp;v=4</PackageIconUrl>
1818
</PropertyGroup>
1919
<ItemGroup>
20-
<ProjectReference Include="..\..\..\NumSharp\src\NumSharp.Core\NumSharp.Core.csproj" />
20+
<PackageReference Include="NumSharp" Version="0.20.0-alpha1" />
2121
</ItemGroup>
2222
</Project>

src/TensorFlowNET.Core/TensorFlowNET.Core.csproj

Lines changed: 5 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<AssemblyName>TensorFlow.NET</AssemblyName>
66
<RootNamespace>Tensorflow</RootNamespace>
77
<TargetTensorFlow>1.14.0</TargetTensorFlow>
8-
<Version>0.10.11</Version>
8+
<Version>0.11.0</Version>
99
<Authors>Haiping Chen, Meinrad Recheis</Authors>
1010
<Company>SciSharp STACK</Company>
1111
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
@@ -17,28 +17,10 @@
1717
<PackageTags>TensorFlow, NumSharp, SciSharp, MachineLearning, TensorFlow.NET, C#</PackageTags>
1818
<Description>Google's TensorFlow full binding in .NET Standard.
1919
Docs: https://tensorflownet.readthedocs.io</Description>
20-
<AssemblyVersion>0.10.11.0</AssemblyVersion>
21-
<PackageReleaseNotes>Changes since v0.9.0:
22-
23-
1. Added full connected Convolution Neural Network example.
24-
2. Take dependency on SciSharp.TensorFlow.Redist.
25-
3. Create Tensor from array without copying.
26-
4. Fix path issue of Transfer Learning example on Linux.
27-
5. Add back gen_ops.cs.
28-
6. Add StridedSliceGrad.
29-
7. Add BatchMatMulGrad.
30-
8. Upgrade NumSharp.
31-
9. Fix strided_slice_grad type convention error.
32-
10. Add AbsGrad.
33-
11. Fix Session.LoadFromSavedModel(string).
34-
12. Add Tensor operator overloads.
35-
13. Fix default graph and operation issue when import model.
36-
14. Fix TF_String endcode and decode.
37-
15. Fix Tensor memory leak.
38-
16. Rename with to tf_with that is only used to build graph purpose.
39-
17. Graph inherit from DisposableObject.</PackageReleaseNotes>
20+
<AssemblyVersion>0.11.10.0</AssemblyVersion>
21+
<PackageReleaseNotes>Changes since v0.10.0:</PackageReleaseNotes>
4022
<LangVersion>7.3</LangVersion>
41-
<FileVersion>0.10.11.0</FileVersion>
23+
<FileVersion>0.11.10.0</FileVersion>
4224
<PackageLicenseFile>LICENSE</PackageLicenseFile>
4325
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
4426
<SignAssembly>true</SignAssembly>
@@ -70,14 +52,11 @@ Docs: https://tensorflownet.readthedocs.io</Description>
7052

7153
<ItemGroup>
7254
<PackageReference Include="Google.Protobuf" Version="3.5.1" />
55+
<PackageReference Include="NumSharp" Version="0.20.0-alpha1" />
7356
</ItemGroup>
7457

7558
<ItemGroup>
7659
<Folder Include="Distribute\" />
7760
<Folder Include="Keras\Initializers\" />
7861
</ItemGroup>
79-
80-
<ItemGroup>
81-
<ProjectReference Include="..\..\..\NumSharp\src\NumSharp.Core\NumSharp.Core.csproj" />
82-
</ItemGroup>
8362
</Project>

test/TensorFlowNET.UnitTest/TensorFlowNET.UnitTest.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
</ItemGroup>
2424

2525
<ItemGroup>
26-
<ProjectReference Include="..\..\..\NumSharp\src\NumSharp.Core\NumSharp.Core.csproj" />
2726
<ProjectReference Include="..\..\src\KerasNET.Core\Keras.Core.csproj" />
2827
<ProjectReference Include="..\..\src\TensorFlowHub\TensorFlowHub.csproj" />
2928
<ProjectReference Include="..\..\src\TensorFlowNET.Core\TensorFlowNET.Core.csproj" />

0 commit comments

Comments
 (0)