Features, which used for training #129
-
Hello, guys! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hi @trover97. If your data is in numpy ndarray format, all the features are used for training. If your data is in pandas DataFrame format, you can get the features list through Let me know if this does not answer your question. |
Beta Was this translation helpful? Give feedback.
Hi @trover97. If your data is in numpy ndarray format, all the features are used for training. If your data is in pandas DataFrame format, you can get the features list through
automl_experiment._X_train_all.columns.values
(assumingautoml_experiment
is a fitted automl instance from flaml). Note that if your original pandas DataFrame contains datetime features, we pre-processed such features (Ref: https://github.com/microsoft/FLAML/blob/main/flaml/data.py#L219).Let me know if this does not answer your question.
Thanks!