Oceania2018 5 years ago
parent
commit
b02520e74b
1 changed files with 9 additions and 1 deletions
  1. +9
    -1
      docs/source/HelloWorld.md

+ 9
- 1
docs/source/HelloWorld.md View File

@@ -25,7 +25,15 @@ TensorFlow.NET uses the .NET Standard 2.0 standard, so your new project Target F




```cmd ```cmd
### install tensorflow C# binding
PM> Install-Package TensorFlow.NET PM> Install-Package TensorFlow.NET

### Install tensorflow binary
### For CPU version
PM> Install-Package SciSharp.TensorFlow.Redist

### For GPU version (CUDA and cuDNN are required)
PM> Install-Package SciSharp.TensorFlow.Redist-Windows-GPU
``` ```


### Start coding Hello World ### Start coding Hello World
@@ -36,7 +44,7 @@ After installing the TensorFlow.NET package, you can use the `using Tensorflow`


```csharp ```csharp
using System; using System;
using Tensorflow;
using static Tensorflow.Binding;


namespace TensorFlowNET.Examples namespace TensorFlowNET.Examples
{ {


Loading…
Cancel
Save