- Deep Learning with Keras
- Antonio Gulli Sujit Pal
- 213字
- 2021-07-02 23:58:00
Conventions
In this book, you will find a number of text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "In addition, we load the true labels into Y_train and Y_test respectively and perform a one-hot encoding on them."
A block of code is set as follows:
from keras.models import Sequential
model = Sequential()
model.add(Dense(12, input_dim=8, kernel_initializer='random_uniform'))
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
# 10 outputs
# final stage is softmax
model = Sequential()
model.add(Dense(NB_CLASSES, input_shape=(RESHAPED,)))
model.add(Activation('softmax'))
model.summary()
Any command-line input or output is written as follows:
pip install quiver_engine
New terms and important words are shown in bold. Words that you see on the screen, for example, in menus or dialog boxes, appear in the text like this: "Our simple net started with an accuracy of 92.22%, which means that about eight handwritten characters out of 100 are not correctly recognized."
Warnings or important notes appear in a box like this.
Tips and tricks appear like this.
- Aftershot Pro:Non-destructive photo editing and management
- 深入理解Spring Cloud與實戰
- FPGA從入門到精通(實戰篇)
- 電腦軟硬件維修大全(實例精華版)
- Effective STL中文版:50條有效使用STL的經驗(雙色)
- 微服務分布式架構基礎與實戰:基于Spring Boot + Spring Cloud
- 分布式系統與一致性
- 單片機開發與典型工程項目實例詳解
- 單片機技術及應用
- 3D Printing Blueprints
- 單片機原理與技能訓練
- 計算機電路基礎(第2版)
- Arduino項目案例:游戲開發
- MicroPython Cookbook
- 微服務架構實戰:基于Spring Boot、Spring Cloud、Docker