- 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.
推薦閱讀
- Extending Jenkins
- 黑客攻防從入門到精通(實戰(zhàn)秘笈版)
- Kubernetes實戰(zhàn)
- Magento 2 Theme Design(Second Edition)
- Instant Typeahead.js
- JavaScript 程序設(shè)計案例教程
- iOS開發(fā)實戰(zhàn):從入門到上架App Store(第2版) (移動開發(fā)叢書)
- 蘋果的產(chǎn)品設(shè)計之道:創(chuàng)建優(yōu)秀產(chǎn)品、服務(wù)和用戶體驗的七個原則
- C和C++游戲趣味編程
- Python圖形化編程(微課版)
- Machine Learning in Java
- Java Web從入門到精通(第3版)
- 深入實踐Kotlin元編程
- Web程序設(shè)計:ASP.NET(第2版)
- Python全棧開發(fā):基礎(chǔ)入門