- 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; }
}
}
推薦閱讀
- Flask Web全棧開發實戰
- 算法零基礎一本通(Python版)
- Developing Middleware in Java EE 8
- 區塊鏈:以太坊DApp開發實戰
- MATLAB實用教程
- Mastering Rust
- Unity 5 for Android Essentials
- Python極簡講義:一本書入門數據分析與機器學習
- HTML+CSS+JavaScript網頁設計從入門到精通 (清華社"視頻大講堂"大系·網絡開發視頻大講堂)
- Creating Data Stories with Tableau Public
- Android Development Tools for Eclipse
- 基于GPU加速的計算機視覺編程:使用OpenCV和CUDA實時處理復雜圖像數據
- Java多線程并發體系實戰(微課視頻版)
- 用Python動手學統計學
- Getting Started with hapi.js