ニューラルネットワークで画像認識を学習中です。
Cifar10のデータセットを扱う上で、numpyをインポートせずとも特にエラーを吐かないのですが
データ型'numpy.ndarray'を扱うためにはimport numpy は不要なのでしょうか。
また、不要な場合は理由ははぜでしょうか。
基本的なことが分かっておらず恐縮ですがよろしくお願いします。
環境:Anaconda
IDE:Jupyter Notebook
import tensorflow as tf from tensorflow.keras import datasets, layers, models import matplotlib.pyplot as plt (train_images, train_labels), (test_images, test_labels) = datasets.cifar10.load_data() class_names = ['airplane', 'automobile', 'bird', 'cat', 'deer', 'dog', 'frog', 'horse', 'ship', 'truck'] print(type(train_images)) # 出力:<class 'numpy.ndarray'>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/09/22 11:47