You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem is that feature extraction is different when you train the model and when you apply it.
So it is clear that FeatureExtractor is a transformer and fit() and transform() methods should be implemented. It helps to reduce code complexity a lot. Now we have both methods implemented inside extract_features() and index_labels flag turns it to fit or transform method.
The text was updated successfully, but these errors were encountered:
Ancestor issue: #387
The problem is that feature extraction is different when you train the model and when you apply it.
So it is clear that
FeatureExtractor
is a transformer andfit()
andtransform()
methods should be implemented. It helps to reduce code complexity a lot. Now we have both methods implemented insideextract_features()
andindex_labels
flag turns it to fit or transform method.The text was updated successfully, but these errors were encountered: