Conventions used
There are a number of text conventions used throughout this book.
Code in text
: 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: "Mount the downloaded WebStorm-10*.dmg
disk image file as another disk in your system."
A block of code is set as follows:
output = (inputs[0] * weights[0] + inputs[1] * weights[1] + inputs[2] * weights[2] + inputs[3] * weights[3] + inputs[4] * weights[4] + bias) output
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
CPU times: user 26.5 s, sys: 9.7 s, total: 36.2 s Wall time: 42 s
Any command-line input or output is written as follows:
pipenv install "dask[complete]"
Tips or important notes
Appear like this.