- Python Deep Learning
- Ivan Vasilev Daniel Slater Gianmario Spacagna Peter Roelants Valentino Zocca
- 94字
- 2021-07-02 14:30:59
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 parameterize this house with a five-dimensional vector, x = (100, 25, 3, 2, 7)."
A block of code is set as follows:
import torch
torch.manual_seed(1234)
hidden_units = 5
net = torch.nn.Sequential(
torch.nn.Linear(4, hidden_units),
torch.nn.ReLU(),
torch.nn.Linear(hidden_units, 3)
)
Warnings or important notes appear like this.
Tips and tricks appear like this.
推薦閱讀
- Microsoft Application Virtualization Cookbook
- 算法訓練營:入門篇(全彩版)
- PyTorch Artificial Intelligence Fundamentals
- Java EE 7 Performance Tuning and Optimization
- Building Serverless Applications with Python
- Building RESTful Python Web Services
- 前端HTML+CSS修煉之道(視頻同步+直播)
- SQL 經典實例
- Node.js開發指南
- Flowable流程引擎實戰
- Extending Unity with Editor Scripting
- C++ Application Development with Code:Blocks
- 自學Python:編程基礎、科學計算及數據分析(第2版)
- Learning iOS Security
- C指針原理揭秘:基于底層實現機制