unset_min_denominator#
- ivy.unset_min_denominator()[source]#
Reset the global minimum denominator used by ivy for numerically stable division to the previous value.
- Return type:
None
Examples
>>> ivy.set_min_denominator(1e-10) >>> y = ivy.min_denominator >>> print(y) 1e-10
>>> ivy.unset_min_denominator() >>> ivy.min_denominator 1e-12