Hands-On Neural Networks with Keras
上QQ阅读APP看书,第一时间看更新

Conventions used

There are a number of text conventions used throughout this book.

CodeInText: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: "This refers to the type of data that's stored in the tensor, and can be checked by calling the type() method on a tensor of interest."

A block of code is set as follows:

import numpy as np
import keras
from keras.datasets import mnist
from keras.utils import np_utils

When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:

keras.utils.print_summary(model, line_length=None, positions=None,    
print_fn=None)

Any command-line input or output is written as follows:

! pip install keras-vis

Bold: Indicates a new term, an important word, or words that you see on screen.

Warnings or important notes appear like this.
Tips and tricks appear like this.