Skip to content

Commit

Permalink
Update docs/tutorials/csharp/basic_csharp.md
Browse files Browse the repository at this point in the history
  • Loading branch information
yuslepukhin authored Sep 28, 2023
1 parent d153b29 commit ec95083
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/tutorials/csharp/basic_csharp.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ To start scoring using the model, create a session using the `InferenceSession`
using var session = new InferenceSession("model.onnx");
```

Once a session is created, you can execute queries using the `Run` method of the `InferenceSession` object.
Once a session is created, you can run inference using the `Run` method of the `InferenceSession` object.

```cs
float[] sourceData; // assume your data is loaded into a flat float array
Expand Down

0 comments on commit ec95083

Please sign in to comment.