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

📄 iextractor.cs

📁 利用人工智能算法对财务数据进行分析
💻 CS
字号:
namespace FinanceAI.AI
{
    // TODO: Remove? Who will do the feature extraction? Include in the samples?
    interface IExtractor
    {
        // Initialize the extraction
        void Initialize( string source );

        // Extract the features
        void Extract( 
            ISampleSelector s,      // true if the sample will be selected
            IFeatureSelector f );   // return a sample with the selected features

        // Return the extracted data
        ClassificationData Data { get; }
    }
}

⌨️ 快捷键说明

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