June 2016
Beginner to intermediate
304 pages
6h 24m
English
In this book, you will find a number of text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "Here, we allocated 25% of the data for testing, as specified by the test_size parameter."
A block of code is set as follows:
import numpy as np import matplotlib.pyplot as plt import utilities # Load input data input_file = 'data_multivar.txt' X, y = utilities.load_data(input_file)
Any command-line input or output is written as follows:
$ python object_recognizer.py --input-image imagefile.jpg --model-file ...