Skip to content

Commit 7d76357

Browse files
samuelcaldasOceania2018
authored andcommitted
Update HelloWorld.md
1 parent 9e68b94 commit 7d76357

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

docs/source/HelloWorld.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,15 @@ TensorFlow.NET uses the .NET Standard 2.0 standard, so your new project Target F
2525

2626

2727
```cmd
28+
### install tensorflow C# binding
2829
PM> Install-Package TensorFlow.NET
30+
31+
### Install tensorflow binary
32+
### For CPU version
33+
PM> Install-Package SciSharp.TensorFlow.Redist
34+
35+
### For GPU version (CUDA and cuDNN are required)
36+
PM> Install-Package SciSharp.TensorFlow.Redist-Windows-GPU
2937
```
3038

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

3745
```csharp
3846
using System;
39-
using Tensorflow;
47+
using static Tensorflow.Binding;
4048

4149
namespace TensorFlowNET.Examples
4250
{

0 commit comments

Comments
 (0)