- Deep Learning with PyTorch Quick Start Guide
- David Julian
- 164字
- 2021-07-02 15:00:08
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: "Mount the downloaded WebStorm-10*.dmg disk image file as another disk in your system."
A block of code is set as follows:
import numpy as np
x = np.array([[1,2,3],[4,5,6],[1,2,5]])
y = np.linalg.inv(x)
print (y)
print (np.dot(x,y))
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
import numpy as np
x = np.array([[1,2,3],[4,5,6],[1,2,5]])
y = np.linalg.inv(x)
print (y)
print (np.dot(x,y))
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: "Select System info from the Administration panel."
Warnings or important notes appear like this.
Tips and tricks appear like this.
推薦閱讀
- GNU-Linux Rapid Embedded Programming
- Spark編程基礎(Scala版)
- 自動檢測與傳感技術
- 數據挖掘實用案例分析
- MCSA Windows Server 2016 Certification Guide:Exam 70-741
- Zabbix Network Monitoring(Second Edition)
- 分布式多媒體計算機系統
- 可編程控制器技術應用(西門子S7系列)
- 網站前臺設計綜合實訓
- TensorFlow Reinforcement Learning Quick Start Guide
- 在實戰中成長:Windows Forms開發之路
- INSTANT Munin Plugin Starter
- R Machine Learning Projects
- Mastering Exploratory Analysis with pandas
- Mastering Ansible(Second Edition)