• .NET ML 机器学习上手


    打开: visual studio 2019  下载机器学习模块

    Model Builder component in Visual Studio Installer.

    在 工具->选项->环境-> 新特性中选用 ML

    在解决方案管理器中, 添加ML项目.

    选择使用场景,进行数据分析 scenario.

    Model Builder supports classification, value prediction, recommendation, image classification, and object detection scenarios.

    提供相关数据集, 并开始训练

    对模型进行评分evaluation

    建立耗损模型

    Consume

    using System;
    using MyMLAppML.Model;
    
    namespace myMLApp
    {
        class Program
        {
            static void Main(string[] args)
            {
                // Add input data
                var input = new ModelInput()
                {
                  Col0 = "This restaurant was wonderful."
                };
    
                // Load model and predict output of sample data
                ModelOutput result = ConsumeModel.Predict(input);
                // If Prediction is 1, sentiment is "Positive"; otherwise, sentiment is "Negative"
                string sentiment = result.Prediction == "1" ? "Positive" : "Negative";
                Console.WriteLine($"Text: {input.Col0}
    Sentiment: {sentiment}");
            }
        }
    }
    

      机器学习样例:https://github.com/dotnet/machinelearning-samples

  • 相关阅读:
    强大的晶体管
    FPGA--数字芯片之母
    方波中的毛刺
    运放,运放
    解决标准FPGA资源丰富却浪费的问题
    国产FPGA市场分析 该如何破局
    流行的FPGA的上电复位
    Git 学习笔记
    日志格式的配置
    Shiro 笔记
  • 原文地址:https://www.cnblogs.com/xred/p/14324514.html
Copyright © 2020-2023  润新知