June 2018
Intermediate to advanced
276 pages
6h 26m
English
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: "First, check your Python version with the python --version command."
A block of code is set as follows:
from keras import [what_to_use]from keras.models import Sequentialfrom keras.layers import Dense
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
model = Sequential()# N = number of neurons# V = number of variablemodel.add(Dense(N, input_dim=V, activation='relu'))# S = number of neurons in the 2nd layermodel.add(Dense(S, ...
Read now
Unlock full access