I encountered an ImportError while attempting to import PyCaret's classification module:
from pycaret.classification import*ImportError: cannot import name 'interp' from 'scipy'This error occurs when Python is unable to find the interp function within the SciPy library.
It seems that PyCaret's classification module relies on the 'interp' function from SciPy, but for some reason, Python is unable to locate it. This could be due to a version mismatch or a corrupted installation of the SciPy library.
How to resolve this issue?