-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] #133
Comments
It appears that for some features in You can use Those warnings, however, hint that something may be off with some features in Felipe. |
Hi, thank you. What does it mean? " hint that something may be off with some features in X " X has no nan value. Look:
I tried summary=["nanmax"] , but unfortunately I receive the result:
|
I can't track the cause of those warnings without access to the data. Can you use any other dataset to check if the issue persists? |
Indeed, it don't persist with the data from the examples in https://github.com/ealcobaca/pymfe |
Hi, I don't know if it is a bug.
I am using:
extractor = pymfe.mfe.MFE(features=['f1'], groups=['complexity'], summary=['max']) extractor.fit(np.array(X), y.numpy().astype('int64'))
X is a tensor with dimension (100, 1176).
y is a tensor with dimension (100,).
Do you know why am I receiving the following warnings?
/home/user/miniconda3/envs/complexity/lib/python3.8/site-packages/pymfe/_internal.py:1568: UserWarning: It is not possible make equal discretization
warnings.warn("It is not possible make equal discretization")
/home/user/miniconda3/envs/complexity/lib/python3.8/site-packages/pymfe/complexity.py:804: RuntimeWarning: invalid value encountered in true_divide
attr_discriminant_ratio = _numer / _denom
/home/user/miniconda3/envs/complexity/lib/python3.8/site-packages/pymfe/_internal.py:731: RuntimeWarning: Can't summarize feature 'f1' with summary 'max'. Will set it as 'np.nan'.
warnings.warn(
The text was updated successfully, but these errors were encountered: