- Machine Learning with Scala Quick Start Guide
- Md. Rezaul Karim
- 192字
- 2021-06-24 14:31:58
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: "It gave me a Matthews correlation coefficient of 0.3888239300421191."
A block of code is set as follows:
rawTrafficDF.select("Hour (Coded)", "Immobilized bus", "Broken Truck",
"Vehicle excess", "Fire", "Slowness in traffic (%)").show(5)
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
// Create a decision tree estimator
val dt = new DecisionTreeClassifier()
.setImpurity("gini")
.setMaxBins(10)
.setMaxDepth(30)
.setLabelCol("label")
.setFeaturesCol("features")
Any command-line input or output is written as follows:
+-----+-----+
|churn|count|
+-----+-----+
|False| 2278|
| True| 388 |
+-----+-----+
Bold: Indicates a new term, an important word, or words that you see onscreen. For example, words in menus or dialog boxes appear in the text like this. Here is an example: "Clicking the Next button moves you to the next screen."
- Div+CSS 3.0網(wǎng)頁布局案例精粹
- 精通MATLAB神經(jīng)網(wǎng)絡(luò)
- 影視后期制作(Avid Media Composer 5.0)
- 數(shù)控銑削(加工中心)編程與加工
- 新手學電腦快速入門
- 面向?qū)ο蟪绦蛟O(shè)計綜合實踐
- 格蠹匯編
- Apache源代碼全景分析(第1卷):體系結(jié)構(gòu)與核心模塊
- 簡明學中文版Photoshop
- 軟件質(zhì)量管理實踐
- 系統(tǒng)建模與控制導(dǎo)論
- Intel Edison Projects
- 深度學習實戰(zhàn)
- 數(shù)字中國:大數(shù)據(jù)與政府管理決策
- OpenGL Development Cookbook