- 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)
推薦閱讀
- ABB工業(yè)機器人編程全集
- 火格局的時空變異及其在電網(wǎng)防火中的應用
- Hands-On Cybersecurity with Blockchain
- 自主研拋機器人技術(shù)
- Blender Compositing and Post Processing
- Learn CloudFormation
- Blender 3D Printing by Example
- 網(wǎng)絡(luò)管理工具實用詳解
- 基于神經(jīng)網(wǎng)絡(luò)的監(jiān)督和半監(jiān)督學習方法與遙感圖像智能解譯
- 學練一本通:51單片機應用技術(shù)
- 強化學習
- 網(wǎng)絡(luò)脆弱性掃描產(chǎn)品原理及應用
- Cloudera Hadoop大數(shù)據(jù)平臺實戰(zhàn)指南
- 精通ROS機器人編程(原書第2版)
- 大數(shù)據(jù)時代的調(diào)查師