You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this happens when you call propertynames in sklearn to check for fit or transform vs predict. once you call one them, it throws a key error exception because while propertynames say fit or transform/predict is available, actually calling one of them breaks. getmember is a more stable call instead of dir which list methods which may not be callable.