diff --git a/README.md b/README.md index b0a82590..1a203bb7 100644 --- a/README.md +++ b/README.md @@ -31,8 +31,6 @@ Install TF.NET through NuGet. PM> Install-Package TensorFlow.NET ``` -If you are using Linux or Mac OS, please download the pre-compiled dll [here](tensorflowlib) and place it in the working folder. This is only need for Linux and Mac OS, and already packed into NuGet for Windows. - Import TF.NET. ```cs diff --git a/src/TensorFlowNet.Benchmarks/TensorFlowNet.Benchmark.csproj b/src/TensorFlowNet.Benchmarks/TensorFlowNet.Benchmark.csproj index 10f6e0a0..a0af6db4 100644 --- a/src/TensorFlowNet.Benchmarks/TensorFlowNet.Benchmark.csproj +++ b/src/TensorFlowNet.Benchmarks/TensorFlowNet.Benchmark.csproj @@ -1,4 +1,4 @@ - + Exe @@ -6,17 +6,15 @@ - + - + - - PreserveNewest - + diff --git a/src/TensorFlowNet.Benchmarks/tensorflow.dll b/src/TensorFlowNet.Benchmarks/tensorflow.dll deleted file mode 100644 index f98eb380..00000000 Binary files a/src/TensorFlowNet.Benchmarks/tensorflow.dll and /dev/null differ diff --git a/test/TensorFlowNET.Examples/Program.cs b/test/TensorFlowNET.Examples/Program.cs index b0e56c4c..5f011105 100644 --- a/test/TensorFlowNET.Examples/Program.cs +++ b/test/TensorFlowNET.Examples/Program.cs @@ -78,6 +78,7 @@ namespace TensorFlowNET.Examples success.ForEach(x => Console.WriteLine($"{x} is OK!", Color.Green)); errors.ForEach(x => Console.WriteLine($"{x} is Failed!", Color.Red)); + Console.WriteLine($"{examples.Length} examples are completed."); Console.ReadLine(); } }