📄 iextractor.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 + -