Browse Source

Update HelloWorld.md

tags/v0.20
Samuel Caldas Haiping 5 years ago
parent
commit
7d76357cdd
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
### install tensorflow C# binding
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
@@ -36,7 +44,7 @@ After installing the TensorFlow.NET package, you can use the `using Tensorflow`

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

namespace TensorFlowNET.Examples
{


Loading…
Cancel
Save