- 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)
推薦閱讀
- 玩轉(zhuǎn)智能機(jī)器人程小奔
- 嵌入式系統(tǒng)及其開發(fā)應(yīng)用
- 21天學(xué)通PHP
- 電腦上網(wǎng)直通車
- 計算機(jī)網(wǎng)絡(luò)應(yīng)用基礎(chǔ)
- 工業(yè)機(jī)器人入門實(shí)用教程(KUKA機(jī)器人)
- Apache Spark Deep Learning Cookbook
- 基于ARM 32位高速嵌入式微控制器
- ESP8266 Home Automation Projects
- Cloud Security Automation
- 機(jī)器人人工智能
- 工業(yè)自動化技術(shù)實(shí)訓(xùn)指導(dǎo)
- 過程控制系統(tǒng)
- INSTANT Puppet 3 Starter
- IBM? SmartCloud? Essentials