- 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; }
}
}
推薦閱讀
- Oracle從入門到精通(第3版)
- Java EE 6 企業級應用開發教程
- 前端跨界開發指南:JavaScript工具庫原理解析與實戰
- C# 從入門到項目實踐(超值版)
- Magento 2 Theme Design(Second Edition)
- BeagleBone Media Center
- Bulma必知必會
- Implementing Cisco Networking Solutions
- Python王者歸來
- ExtJS高級程序設計
- Getting Started with LLVM Core Libraries
- MongoDB,Express,Angular,and Node.js Fundamentals
- RESTful Java Web Services(Second Edition)
- Python深度學習原理、算法與案例
- Puppet:Mastering Infrastructure Automation