- 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.
推薦閱讀
- Unity 2020 By Example
- UNIX編程藝術(shù)
- PHP 從入門(mén)到項(xiàng)目實(shí)踐(超值版)
- C語(yǔ)言最佳實(shí)踐
- 秒懂設(shè)計(jì)模式
- iOS編程基礎(chǔ):Swift、Xcode和Cocoa入門(mén)指南
- Modern JavaScript Applications
- SharePoint Development with the SharePoint Framework
- SQL Server 2016數(shù)據(jù)庫(kù)應(yīng)用與開(kāi)發(fā)
- Getting Started with NativeScript
- Building Android UIs with Custom Views
- Kubernetes進(jìn)階實(shí)戰(zhàn)
- Orchestrating Docker
- Android Studio Cookbook
- UML軟件建模