Matminer2024FastFeaturizer is not in the dictionary in FEATURIZER_PRESETS.
More importantly, when using for composition only it reverts to CompositionOnlyMatminer2023Featurizer, however
the structure_featurizers are not empty, it then includes erroneously GlobalSymmetryFeatures|is_centrosymmetric
in the features as a result.
I had to set manually:
from modnet.featurizers.presets.matminer_2024_fast import Matminer2024FastFeaturizer
moddata.featurizer = Matminer2024FastFeaturizer()
moddata.featurizer.structure_featurizers = [ ]
To eliminate the structural feature.
Matminer2024FastFeaturizer is not in the dictionary in FEATURIZER_PRESETS.
More importantly, when using for composition only it reverts to CompositionOnlyMatminer2023Featurizer, however
the structure_featurizers are not empty, it then includes erroneously GlobalSymmetryFeatures|is_centrosymmetric
in the features as a result.
I had to set manually:
To eliminate the structural feature.