Skip to content

Commit

Permalink
Fix typo in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
linusseelinger authored Mar 18, 2024
1 parent 6e75549 commit e85094f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clients/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ std::vector<std::vector<double>> inputs {{100.0, 18.0}};
The input vector can then be passed into the model.

```
std::vector<std::vector<double>> outputs = client.Evaluate(input);
std::vector<std::vector<double>> outputs = client.Evaluate(inputs);
```

The output of the model evaluation is a `std::vector<std::vector<double>>` containing the output defined by the model.
Expand Down

0 comments on commit e85094f

Please sign in to comment.