iranker.cs
来自「利用人工智能算法对财务数据进行分析」· CS 代码 · 共 12 行
CS
12 行
namespace FinanceAI.AI
{
public interface IRanker : IClassifier
{
// Return the rank of the sample, ignore the category
double Rank( ISample sample );
// Rank the instance for the given category
double Rank( ISample sample, string category );
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?