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
Currently, users can provide FeatureMetric with a list of feature names known to eFEL. In addition to that functionality, it should be possible to hand over a function instead of a name to support arbitrary feature calculations not supported by eFEL.
The text was updated successfully, but these errors were encountered:
Even though we do not provide feature extraction by using eFEL or some other library behind the scenes, the user can manually use eFEL or any other external library of choice to extract features.
what the user could do is to define additional function that will use any external library.
Let's say that, for whatever the reason is, the potentially interesting feature to learn the posterior could be the sample entropy.
The user would just have to import the library of choice that is able to compute this and wrap it inside the callable as follows:
(Here I use antropy because of its user friendliness)
Currently, users can provide
FeatureMetric
with a list of feature names known to eFEL. In addition to that functionality, it should be possible to hand over a function instead of a name to support arbitrary feature calculations not supported by eFEL.The text was updated successfully, but these errors were encountered: