The Development Editor for this book is Christina Taylor, not Toni Arritola, as listed.
In the last line of section 1.1.3, RG should be RGB.
Replace the first three lines of the snippet at the beginning of section 2.2.2 with the following:
>>> x = np.array([12, 3, 6, 14, 7])
>>> x
array([12,3,6,14,7])
In the next to the last line of the first paragraph, the simple expression 28 x 8 integers should be 28 x 28.
In the second line following figure 2.5, replace and with of.
Because the rows of x and the columns of y...
There's a type in the Nesterov momentum example; the + sigm should be a minus sign:
velocity = past_velocity * momentum + learning_rate * gradient
In the third line of the second paragraph, the upper case W should be lower case:
...backends support Windows), We don't recommend it.
should be
backends support Windows), we don't recommend it.
Change the fifth line of code to the following:
epochs = range(1, len(loss_values) + 1)
Replace the second and third lines of code with the following:
acc = history_dict['acc']
val_acc = history_dict['val_acc']
In line 8, replace Loss with Accuracy:
plt.ylabel('Accuracy')
The Loss legend should read Accuracy.
Change the eighth line of code to the following:
plt.ylabel('Accuracy')
The Loss legend should read Accuracy.
In the last line of section 3.5.7, replace eight with four.
The network is able to cram most of the necessaray information into these four dimensional...
The label for Folds 2 and 3 in the first partition should read Training, not Validation.
The label for Folds 2 and 3 in the first partition should read Training, not Validation.
The last line of the first paragraph is missing the word be.
...which can
In the note at the top of the page, the simple expression 148 x 148 to 7 x 7 should be 150 x 150 to 7 x 7.
In the third line of the second paragraph, the word it is missing.
... you can expect it to perform...
Line 8, <1>Its shape is (1, 150, 150, 3)
, is an annotation that didn't render correctly; that annotation goes with the line immediately following.
In line four of the paragraph following listing 5.40, the simple expression 224 x 244 should be 224 x 224.
In line two of the first paragraph, word should be plural.
...sequences of words or sequences...
Line 2 is missing the term Embedding:
from keras.layers import Flatten, Dense, Embedding
Line 7 is missing the word and:
...via an activation function
In the first line of paragraph two in section 6.3.1, the word as is missing.
...(such as air temperature, ...
In line 2, <1> temperature (in degrees Celsius)
is an annotation that didn't render correctly.
Add // batch_size to the last two lines:
val_stseps = (300000 - 200001 - lookback) // batch_size
tes_steps = (len(float_data) - 300001 - lookback) // batch_size
In line four of the first paragraph following listing 6.46, the word eight should be four.
...for the right number of epochs (four) and run it...
In line two of the second paragraph in section 7.2.1, the word in should be is.
...that the validation loss is no longer...
In line two of the Batch renormalization sidebar, the word clears should be clear.
It offers clear benefits...
In the second line of the first bullet point, the word tokens() should be token(s).
...to predict the next token(s)...
In line four of section 8.4, the word implementations shold not be plural.
...alongside implementation details relative to...
In line five of the first paragraph in section 8.4.2, the word vector is singular.
...there may be a smile vector, such that...
In the fourth line from the bottom, the word as should be a.
...turning a male face into a female face, ..
In line five of paragraph two, the word accounting should be account.
...process should be taken into account during encoding...
In the second line of the first bullet point, the word differentiate is misspelled.
In line four of the first bullet point, the word nevers should be never.
...the generator never sees images...
In the caption for figure 8.18, the word row should be column.
...in each column, two images...