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

Full code listing

Following is the full code listing of the recipe Classification for spam detection:

from keras.layers import Embedding, Dense, LSTMfrom keras.models import Sequentialfrom keras.preprocessing.text import Tokenizerfrom keras.preprocessing.sequence import pad_sequencesimport numpy as npfrom sklearn.metrics import confusion_matriximport pandas as pd# get datasetdata = pd.read_csv('/spam-detection/spam_dataset.csv')texts = []classes = []for i, label in enumerate(data['Class']):    texts.append(data['Text'][i])    if label == 'ham':        classes.append(0)    else:        classes.append(1)texts = np.asarray(texts)classes = np.asarray(classes)print("number of texts :", len(texts))print("number of labels: ", len(classes))# number of words used as features ...
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