スポンサーリンク
カテゴリ:numpy
Python バージョン:Python2.7
Tensorflowバージョン:Tnsorflow 1.0
OSバージョン:Ubuntu 16.04.2
numpy でprint 時を実行すると出力結果が省略して表示されます。
例:
train_image[0]
array([ 1., 1., 1., ..., 1., 1., 1.], dtype=float32)
import numpy as np
np.set_printoptions(threshold=np.inf)
スポンサーリンク