How to Solve NameError: name 'ADASYN' is not defined -- imblearn
Solution: Import the 'ADASYN' module
To Solve the error, add the following line to the top of your code.
from imblearn.over_sampling import ADASYN
For more information:
Python imblearn ADASYN