Questions tagged [evalml]
4 questions
2
votes
2 answers
While using AutoML from EvalML getting error AttributeError: 'DataTable' object has no attribute 'to_series'
I am running eval.automl on a data, made a class column as below:
df.loc[(df.quality<6), 'flag_class'] = 1
df.loc[(df.quality==6), 'flag_class'] = 2
df.loc[(df.quality>6), 'flag_class'] = 3
then splitting it as below:
X = df[['several columns…

Rajendra Kumar
- 21
- 1
0
votes
1 answer
EVALML used for AUTOML library
----> 3 import evalml
10 frames
/usr/local/lib/python3.10/dist-packages/evalml/pipelines/components/transformers/preprocessing/natural_language_featurizer.py in
3
4 import featuretools as ft
----> 5 from featuretools.primitives import (
6 …

Dibyajyoti Sahoo
- 1
- 1
0
votes
0 answers
EvalML Library - time series multivariate forecasting allowed?
I'm approaching to EvalML Library, I was wondering if it supports multivariate time series forecasting, allowing multiple different features in input to forecast one target variable.
Actual time series example…
0
votes
0 answers
AutoMLSearch with EvalML returning an error
I am getting following error message while trying to run AutoMLSearch with EvalML.
"All pipelines in the current AutoML batch produced a score of np.nan on the primary objective

Rini
- 1