jax.numpy.get_printoptions

jax.numpy.get_printoptions#

jax.numpy.get_printoptions()[source]#

返回当前打印选项。

返回:

print_opts – 当前打印选项的字典,键为

  • precision : int

  • threshold : int

  • edgeitems : int

  • linewidth : int

  • suppress : bool

  • nanstr : str

  • infstr : str

  • sign : str

  • formatter : 可调用对象的字典

  • floatmode : str

  • legacy : str 或 False

有关这些选项的完整描述,请参阅 set_printoptions

返回类型:

dict

示例

>>> import numpy as np
>>> np.get_printoptions()
{'edgeitems': 3, 'threshold': 1000, ..., 'override_repr': None}
>>> np.get_printoptions()['linewidth']
75
>>> np.set_printoptions(linewidth=100)
>>> np.get_printoptions()['linewidth']
100