- Applied Deep Learning with Python
- Alex Galea Luis Capelo
- 182字
- 2021-08-13 15:53:03
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: "We can see the NotebookApp being run on a local server."
A block of code is set as follows:
fig, ax = plt.subplots(1, 2)
sns.regplot('RM', 'MEDV', df, ax=ax[0],
scatter_kws={'alpha': 0.4}))
sns.regplot('LSTAT', 'MEDV', df, ax=ax[1],
scatter_kws={'alpha': 0.4}))
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
cat chapter-1/requirements.txt
matplotlib==2.0.2
numpy==1.13.1
pandas==0.20.3
requests==2.18.4
Any command-line input or output is written as follows:
pip install version_information
pip install ipython-sql
Bold: Indicates a new term, an important word, or words that you see onscreen. For example, words in menus or dialog boxes appear in the text like this. Here is an example: "Notice how the white dress price was used to pad the missing values."
- Python自然語言處理實戰:核心技術與算法
- Computer Vision for the Web
- Learning RxJava
- Vue.js前端開發基礎與項目實戰
- Python程序設計案例教程
- Elasticsearch Server(Third Edition)
- Python數據結構與算法(視頻教學版)
- ASP.NET開發與應用教程
- Red Hat Enterprise Linux Troubleshooting Guide
- Cocos2d-x by Example:Beginner's Guide(Second Edition)
- C++程序設計教程(第2版)
- HTML+CSS+JavaScript網頁制作:從入門到精通(第4版)
- Getting Started with JUCE
- 軟件再工程:優化現有軟件系統的方法與最佳實踐
- HTML5程序開發范例寶典