ML-For-Beginners
ML-For-Beginners copied to clipboard
fix Q-Learning lesson code sample issue
the latest NumPy package deprecates numpy.float which leads to error when it is being used in the Q-Learning lesson's sample code. The below screenshot shows the error.
In this PR, I replaced the numpy.float with Python float and it fixed the issue.