- 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.
推薦閱讀
- Hands-On Internet of Things with MQTT
- Python Artificial Intelligence Projects for Beginners
- 實時流計算系統設計與實現
- 反饋系統:多學科視角(原書第2版)
- Visual C# 2008開發技術詳解
- Learning C for Arduino
- Troubleshooting OpenVPN
- Linux:Powerful Server Administration
- Blender 3D Printing by Example
- 單片機C語言程序設計完全自學手冊
- 網絡服務搭建、配置與管理大全(Linux版)
- Mastering GitLab 12
- Web編程基礎
- 常用傳感器技術及應用(第2版)
- Hands-On Generative Adversarial Networks with Keras