ResultSetResultUnitToString 方法
Returns a string that represents the current result set
返回表示当前结果集的字符串
命名空间: DeploySharp.Data程序集: DeploySharp (在 DeploySharp.dll 中) 版本:0.0.4+6e8a2e904469617cd59619d666c0e272985c0e33
public override string ToString()
返回值
String
A formatted string showing the result type and all predictions
显示结果类型和所有预测结果的格式化字符串
var resultSet = new ResultSet<YoloResult>(predictions);
Console.WriteLine(resultSet.ToString());
// Output: YoloResult<YoloResult> with 3 predictions:
// [prediction1 details]
// [prediction2 details]
// [prediction3 details]