Windows 10 (WindowsDefender)
Power Point (Design Ideas)
Excel (Chart Recommendations)
Microsoft Advertising (Ad Predictions)
Azure Stream Analytics (Anomaly Detection)
Power BI (Key Influencers)
+ more
学習モデル判定用のソースコード
↓ ↓呼出し ↓↓
using Fog_testML.Model;
using System;
namespace fog_test
{
class Program
{
static void Main(string[] args)
{
var input = new ModelInput();
input.ImageSource = "判定したいデータセット";
ModelOutput result = ConsumeModel.Predict(input);
Console.WriteLine(result.Prediction.ToString());
}
}
}