-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
load_hppb() cannot use RawFeaturizer #2350
Comments
@jcwomack Good find! I've marked this as a bug and marked it as open to contribution/bugfix |
13 tasks
I created a pull request #2391. |
Thanks @minhtriet. Making the |
Thank you @jcwomack |
14 tasks
Is the issue still on queue? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Using this featurizer causes an
AxisError
in numpy originating here:deepchem/deepchem/molnet/load_function/hppb_datasets.py
Line 21 in 01ea79d
I suspect that this is because
RawFeaturizer
produces a 1-DX
array, soX.any(axis=1)
fails. The default "ECFP" featurizer does not have this issue, presumably because it produces an n-DX
array.The text was updated successfully, but these errors were encountered: