- Hands-On Machine Learning with JavaScript
- Burak Kanber
- 184字
- 2021-06-25 21:38:16
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: "Use the command line, your favorite IDE, or your file browser to create a directory somewhere on your machine called MLinJSBook, with a subdirectory called Ch1-Ex1."
A block of code is set as follows:
var items = [1, 2, 3 ];
for (var index in items) {
var item = items[index];
…
}
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
['landscape.jpeg', 'lily.jpeg', 'waterlilies.jpeg'].forEach(filename => {
console.log("Decolorizing " + filename + '...');
decolorize('./files/' + filename)
.then(() => console.log(filename + " decolorized"));
});
Any command-line input or output is written as follows:
$ node --version
V9.4.0
Bold: Indicates a new term, an important word, or words that you see onscreen.
Warnings or important notes appear like this.
Tips and tricks appear like this.
- Google Cloud Platform Cookbook
- Mastercam 2017數控加工自動編程經典實例(第4版)
- 計算機應用基礎·基礎模塊
- Windows 7寶典
- 人工智能趣味入門:光環板程序設計
- 在實戰中成長:C++開發之路
- Visual Studio 2010 (C#) Windows數據庫項目開發
- TensorFlow Deep Learning Projects
- 新一代人工智能與語音識別
- Mastering MongoDB 4.x
- PostgreSQL High Performance Cookbook
- 牛津通識讀本:大數據(中文版)
- Hadoop大數據開發基礎
- Building Smart Drones with ESP8266 and Arduino
- Mastering Kubernetes