- Hands-On Machine Learning with ML.NET
- Jarred Capellman
- 46字
- 2021-06-24 16:43:34
The FileInput class
The FileInput class provides the container for the trained classification and the strings data we extract:
using Microsoft.ML.Data;
namespace chapter03_logistic_regression.ML.Objects
{
public class FileInput
{
[LoadColumn(0)]
public bool Label { get; set; }
[LoadColumn(1)]
public string Strings { get; set; }
}
}
推薦閱讀
- 數據庫系統教程(第2版)
- OpenShift在企業中的實踐:PaaS DevOps微服務(第2版)
- INSTANT Django 1.5 Application Development Starter
- Web編程基礎:HTML5、CSS3、JavaScript(第2版)
- Learning C++ by Creating Games with UE4
- Java設計模式深入研究
- Swift Essentials(Second Edition)
- Web前端開發精品課:HTML5 Canvas開發詳解
- Python編程:從入門到實踐(第2版)
- 零基礎入門Python數據分析與機器學習
- Web 2.0策略指南
- Learning WebRTC
- JavaScript Security
- Learning Predictive Analytics with R
- Arduino Robotic Projects