官术网_书友最值得收藏!

  • Keras Deep Learning Cookbook
  • Rajdeep Dua Manpreet Singh Ghotra
  • 113字
  • 2021-06-10 19:38:51

How to do it...

Let's look at how to load this dataset and print the shapes for X_train, y_train, X_test, and y_test. The CIFAR-100 dataset is available through the load_data() function in keras.datasets.cifar100.

The dataset is downloaded from https://www.cs.toronto.edu/~kriz/cifar-100-python.tar.gz; this is hidden in the following implementation:

from keras.datasets import cifar100
(X_train, y_train), (X_test, y_test) = cifar100.load_data()
print("X_train shape: " + str(X_train.shape))
print("y_train shape: " + str(y_train.shape))
print("X_test shape: " + str(X_test.shape))
print("y_test shape: " + str(y_test.shape))

The output of the preceding listing sizes is shown in the following snippet:

X_train shape: (50000, 32, 32, 3)
y_train shape: (50000, 1)
X_test shape: (10000, 32, 32, 3)
y_test shape: (10000, 1)
主站蜘蛛池模板: 甘孜县| 景德镇市| 甘谷县| 武功县| 咸宁市| 宜兴市| 十堰市| 长沙县| 嘉祥县| 浙江省| 抚宁县| 织金县| 拜城县| 卢湾区| 洛宁县| 万盛区| 桂林市| 白玉县| 莲花县| 台山市| 维西| 昌平区| 乐平市| 汕头市| 巴楚县| 常宁市| 湖南省| 启东市| 沂水县| 柘城县| 汤阴县| 襄汾县| 宜宾市| 友谊县| 图木舒克市| 平陆县| 凉山| 皮山县| 嘉禾县| 平南县| 成武县|