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
using ChemistryFeaturization
# these work
featurization =GraphNodeFeaturization([
"Group",
"Row",
"Block",
"Atomic mass",
"Atomic radius",
"X",
])
# but with "isaromatic", which is a SpeciesFeatureDescriptor, it will not. (Block thrown in just for fun)
featurization =GraphNodeFeaturization([
"Block",
"isaromatic"
])
The error is: ERROR: LoadError: AssertionError: Feature isaromatic isn't in the lookup table!, so do these terms just need to simply be added?
The text was updated successfully, but these errors were encountered:
Thanks for pointing this out, this definitely needs to be fixed! Will be sure to address in next version tag.
(The issue is that right now that convenience constructor for GraphNodeFeaturization assumes that everything is an ElementFeatureDescriptor because when I implemented it, SpeciesFeatureDescriptor didn't exist yet 😉)
MWE Below:
The error is:
ERROR: LoadError: AssertionError: Feature isaromatic isn't in the lookup table!
, so do these terms just need to simply be added?The text was updated successfully, but these errors were encountered: