NumPy replace inf with zero
In this post, we are going to understand how to replace inf with zero in the NumPy array. The inf values are infinite values that can be positive or negative, NumPy library np.isinf() function checks element-wise positive or negative infinite values and returns a boolean array.The np. nan_to_num() function also used for replace infinite values.To …