元组到numpy,数据准确性

tuple to numpy, data accuracy

当我将元组转换为 numpy 时,数据准确性存在问题。我的代码是这样的:

import numpy as np
a=(0.547693688614422, -0.7854270889025808, 0.6267478456110592)
print(a)
print(type(a))
tmp=np.array(a)
print(tmp)

结果是这样的:

(0.547693688614422, -0.7854270889025808, 0.6267478456110592)
<class 'tuple'>
[ 0.54769369 -0.78542709  0.62674785]

为什么?

一种方法是这样设置:

In [1039]: np.set_printoptions(precision=20)

In [1041]: tmp=np.array(a)

In [1042]: tmp
Out[1042]: array([ 0.547693688614422 , -0.7854270889025808,  0.6267478456110592])

In [1043]: tmp.dtype
Out[1043]: dtype('float64')

我认为您只是在 display 中看到截断,但内部值仍然保持更高的准确性。这是我的发现:

>> a
(0.547693688614422, -0.7854270889025808, 0.6267478456110592)

>> b=np.array(a)

>> b
array([ 0.54769369, -0.78542709,  0.62674785]) #<-- printed display shows lower accuracy

>> b[0]
0.547693688614422 #<-- print of a single value shows same accuracy as original

这种表面上的差异应该只是数字的显示方式,而不是它们的表示/存储方式。

您可以检查 dtype 以验证它仍然是 float64

tmp.dtype  # dtype('float64')

您可以调整 np.set_printoptions 以查看以不同方式显示的值

print(tmp)  # [ 0.54769369 -0.78542709  0.62674785]
np.set_printoptions(precision=18)  # default precision is 8
print(tmp)  # [ 0.547693688614422  -0.7854270889025808  0.6267478456110592]