We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
amin and amax are aliases for min and max in numpy. They don't do the same as argmin or argmax. Refer to the documentation: https://numpy.org/doc/stable/reference/generated/numpy.amin.html https://numpy.org/doc/stable/reference/generated/numpy.amax.html
amin
amax
min
max
argmin
argmax
They should map to tf.min and tf.max
tf.min
tf.max
Relevant source file: https://github.com/SciSharp/TensorFlow.NET/blob/master/src/TensorFlowNET.Core/NumPy/NumPy.Statistics.cs
use np.amin and notice everything go up in flames
np.amin
No response
The text was updated successfully, but these errors were encountered:
Thank you for your kind reminder, I will fix it.
Sorry, something went wrong.
Hello, this bug has been fixed.
Wanglongzhi2001
No branches or pull requests
Description
amin
andamax
are aliases formin
andmax
in numpy. They don't do the same asargmin
orargmax
. Refer to the documentation:https://numpy.org/doc/stable/reference/generated/numpy.amin.html
https://numpy.org/doc/stable/reference/generated/numpy.amax.html
They should map to
tf.min
andtf.max
Relevant source file:
https://github.com/SciSharp/TensorFlow.NET/blob/master/src/TensorFlowNET.Core/NumPy/NumPy.Statistics.cs
Reproduction Steps
use
np.amin
and notice everything go up in flamesKnown Workarounds
No response
Configuration and Other Information
The text was updated successfully, but these errors were encountered: