
上QQ阅读APP看书,第一时间看更新
Conventions used
There are a number of text conventions used throughout this book.
CodeInText: 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: "To calculate the logarithm of returns, we will use the log() function from numpy."
A block of code is set as follows:
plt.figure(figsize=(10,5))
plt.plot(dataset)
plt.show()
Any command-line input or output is written as follows:
git clone https://github.com/openai/gym
cd gym
pip install -e .
Warnings or important notes appear like this.
Tips and tricks appear like this.