- Hands-On Machine Learning with ML.NET
- Jarred Capellman
- 48字
- 2021-06-24 16:43:34
The FilePrediction class
The FilePrediction class provides the container for the classification, probability, and score:
using Microsoft.ML.Data;
namespace chapter03_logistic_regression.ML.Objects
{
public class FilePrediction
{
[ColumnName("PredictedLabel")]
public bool IsMalicious { get; set; }
public float Probability { get; set; }
public float Score { get; set; }
}
}
推薦閱讀
- 大話PLC(輕松動漫版)
- SQL Server 2016從入門到精通(視頻教學超值版)
- Dynamics 365 Application Development
- 深入理解Django:框架內幕與實現原理
- Visual Basic程序設計教程
- Learning AndEngine
- 微信小程序項目開發實戰
- Haxe Game Development Essentials
- Mastering Data Mining with Python:Find patterns hidden in your data
- Learning Concurrency in Kotlin
- HTML+CSS+JavaScript網頁設計從入門到精通 (清華社"視頻大講堂"大系·網絡開發視頻大講堂)
- 運維前線:一線運維專家的運維方法、技巧與實踐
- Android應用開發深入學習實錄
- Node.js從入門到精通
- Java程序設計實用教程(第2版)