iextractor.cs

来自「利用人工智能算法对财务数据进行分析」· CS 代码 · 共 18 行

CS
18
字号
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 + =
减小字号Ctrl + -
显示快捷键?