Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Machine Learning with Scala Quick Start Guide

You're reading from  Machine Learning with Scala Quick Start Guide

Product type Book
Published in Apr 2019
Publisher Packt
ISBN-13 9781789345070
Pages 220 pages
Edition 1st Edition
Languages
Authors (2):
Md. Rezaul Karim Md. Rezaul Karim
Profile icon Md. Rezaul Karim
Ajay Kumar N Ajay Kumar N
Profile icon Ajay Kumar N
View More author details

Table of Contents (9) Chapters

Preface Introduction to Machine Learning with Scala Scala for Regression Analysis Scala for Learning Classification Scala for Tree-Based Ensemble Techniques Scala for Dimensionality Reduction and Clustering Scala for Recommender System Introduction to Deep Learning with Scala Other Books You May Enjoy

Linear regression

In this section, we will develop a predictive analytics model for predicting slowness in traffic for each row of the data using an LR algorithm. First, we create an LR estimator as follows:

val lr = new LinearRegression()
.setFeaturesCol("features")
.setLabelCol("label")

Then we invoke the fit() method to perform the training on the training set as follows:

println("Building ML regression model")
val lrModel = lr.fit(trainingData)

Now we have the fitted model, which means it is now capable of making predictions. So, let's start evaluating the model on the training and validation sets and calculating the RMSE, MSE, MAE, R squared, and so on:

println("Evaluating the model on the test set and calculating the regression metrics")
// **********************************************************************
val trainPredictionsAndLabels...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}