- 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.
- Hands-On Internet of Things with MQTT
- Div+CSS 3.0網頁布局案例精粹
- Visual Basic.NET程序設計
- Python:Data Analytics and Visualization
- Mastering Game Development with Unreal Engine 4(Second Edition)
- HTML5 Canvas Cookbook
- 基于神經網絡的監督和半監督學習方法與遙感圖像智能解譯
- 啊哈C!思考快你一步
- Pentaho Analytics for MongoDB
- 典型Hadoop云計算
- TensorFlow Deep Learning Projects
- 電腦故障排除與維護終極技巧金典
- 人工智能云平臺:原理、設計與應用
- 數字多媒體技術與應用實例
- Keras Reinforcement Learning Projects