Describe the bug
A clear and concise description of what the bug is.
In the aestimo.py file,
line number 64, alen = np.alen
On the NumPY homepage, I can see the following sentence,
np.alen was deprecated. Use len instead. (gh-14181)
So, could you update the line to
alen = len
Describe the bug A clear and concise description of what the bug is.
In the aestimo.py file, line number 64, alen = np.alen On the NumPY homepage, I can see the following sentence, np.alen was deprecated. Use len instead. (gh-14181) So, could you update the line to alen = len