isample.cs
来自「利用人工智能算法对财务数据进行分析」· CS 代码 · 共 23 行
CS
23 行
using System.Collections.Generic;
namespace FinanceAI.AI
{
public interface ISample
{
// Description of the sample
string Description { get; }
// List of all the features of the sample
List<double> FeatureVector { get; }
// Category of the sample
string Category { get; }
// Confidence or rank for the sample
double Confidence { get; }
// Return true if the sample is labeled
bool IsLabeled { get; }
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?