- 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.
推薦閱讀
- 集成架構中型系統
- OpenStack for Architects
- Hands-On Data Science with SQL Server 2017
- Enterprise PowerShell Scripting Bootcamp
- 空間機械臂建模、規劃與控制
- Learn Microsoft Azure
- 設計模式
- FreeCAD [How-to]
- 伺服與運動控制系統設計
- Mastering DynamoDB
- Learning Couchbase
- Hands-On Artificial Intelligence for Beginners
- 工業機器人編程指令詳解
- VMware vSphere 6.5 Cookbook(Third Edition)
- Azure Serverless Computing Cookbook