Good day!
Hi! I was implementing a pipeline that would be doing some transformations and then later pick the top 5 features based on feature importance. When I later applied the fit_transform
on my data, I got the following error:
AttributeError: 'NoneType' object has no attribute 'transform'
but the code runs fine if I apply fit
and transform
sequentially.