⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 iclassifier.cs

📁 利用人工智能算法对财务数据进行分析
💻 CS
字号:
namespace FinanceAI.AI
{
    public interface IClassifier
    {
        // Classify the given sample return the category and add it to the sample
        string Classify( ISample sample );

        // Classify the instance as either belonging to the given category or not
        bool Classify( ISample sample, string category );

        // Train the classifier on a given set of training data
        bool Train( ClassificationData trainingData );

        // Check if the classifier has already been trained, at least once
        bool IsTrained { get; }

        // Test the classifer and obtain performance metrics
        ClassifierPerformance Test( ClassificationData testData );
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -