Skip to Content
Keras Deep Learning Cookbook
book

Keras Deep Learning Cookbook

by Rajdeep Dua, Sujit Pal, Manpreet Singh Ghotra
October 2018
Intermediate to advanced
252 pages
6h 49m
English
Packt Publishing
Content preview from Keras Deep Learning Cookbook

Encoder

  1. First, we define an encoder, which converts char to a one-hot encoded value in an array of length 91:
def encode(pattern, n_unique):    encoded = list()    for value in pattern:        row = [0.0 for x in range(n_unique)]        index = ord(value)        row[ord(value)] = 1.0        encoded.append(row)    return encoded
  1. Divide the sequence into X and y values as follows:
def to_xy_pairs(encoded):    X,y = list(),list()    for i in range(1, len(encoded)):        X.append(encoded[i-1])        y.append(encoded[i])    return X, y
  1. Convert the x, y values into a three-dimensional matrix which LSTM can understand, as follows: 
def to_lstm_dataset(sequence, n_unique):    # one hot encode    encoded = encode(sequence, n_unique)    # convert to in/out patterns    X,y = to_xy_pairs(encoded)    # convert to LSTM ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Applied Deep Learning with Keras

Applied Deep Learning with Keras

Ritesh Bhagwat, Mahla Abdolahnejad, Matthew Moocarme
Advanced Deep Learning with Keras

Advanced Deep Learning with Keras

Rowel Atienza, Neeraj Verma, Valerio Maggio
The Applied TensorFlow and Keras Workshop

The Applied TensorFlow and Keras Workshop

Harveen Singh Chadha, Luis Capelo, Abhranshu Bagchi, Achint Chaudhary, Vishal Chauhan, Alexis Rutherford, Subhash Sundaravadivelu

Publisher Resources

ISBN: 9781788621755Supplemental Content