Using numpy
arrays as data source may lead to errors if inferred encoding is used
#193
Labels
numpy
arrays as data source may lead to errors if inferred encoding is used
#193
GAMA infers some features as categoricals (which is expected behavior, though incorrect).
This in turn creates new feature names, now some are
int
and some arestr
, e.g.:['1_1', '1_2', 2, 3, ...]
This results in an error during evaluation:
<class 'TypeError'> Feature names are only supported if all input features have string name
.Postponing on fixing this until #169 is merged.
For people encountering issues with this behavior, please use pandas dataframes for now.
The text was updated successfully, but these errors were encountered: