書名: 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; }
}
}
推薦閱讀
- 流量的秘密:Google Analytics網站分析與優化技巧(第2版)
- Java范例大全
- Mastering ServiceStack
- Docker技術入門與實戰(第3版)
- Java高并發核心編程(卷2):多線程、鎖、JMM、JUC、高并發設計模式
- JIRA 7 Administration Cookbook(Second Edition)
- Selenium Design Patterns and Best Practices
- Eclipse Plug-in Development:Beginner's Guide(Second Edition)
- Python 3破冰人工智能:從入門到實戰
- C語言課程設計
- Learning Python Design Patterns
- C語言程序設計教程
- WordPress 4.0 Site Blueprints(Second Edition)
- 領域驅動設計:軟件核心復雜性應對之道(修訂版)
- PHP編程基礎與實踐教程