Hands-On Generative Adversarial 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: "We are going to update all Anaconda packages using the conda command."

A block of code is set as follows:

import numpy as np
from keras.datasets import mnist
from keras.models import Sequential
from keras.utils import np_utils
from keras.optimizers import SGD
from keras.layers.core import Dense,Activation

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

pip install keras
Warnings or important notes appear like this.
Tips and tricks appear like this.