lobe.NET
lobe.NET copied to clipboard
Wrong Example?
The example on README.md shows:
Console.WriteLine(results.Classification.Label);
But results has a collection called Classifications, not a single item.
I got it to work by using the following: Console.WriteLine(results.Prediction.Label);