Fix duplicate 'dotnet add package' in Nuget package installation commands (#18824)

This commit is contained in:
Furkan Salık 2023-12-19 01:58:49 +03:00 committed by GitHub
parent 109cc579cc
commit 1fb1dcee69
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -138,8 +138,8 @@ Now that we have tested the model in Python its time to build it out in C#. The
```PowerShell
dotnet add package Microsoft.ML.OnnxRuntime --version 1.16.0
dotnet add package Microsoft.ML.OnnxRuntime.Managed --version 1.16.0
dotnet add package dotnet add package Microsoft.ML
dotnet add package dotnet add package BERTTokenizers --version 1.1.0
dotnet add package Microsoft.ML
dotnet add package BERTTokenizers --version 1.1.0
```
### Create the App