Skip to Content
Industrial Internet Application Development
book

Industrial Internet Application Development

by Alena Traukina, Jayant Thomas, Prashant Tyagi, Veera Kishore Reddipalli
September 2018
Intermediate to advanced
412 pages
11h 12m
English
Packt Publishing
Content preview from Industrial Internet Application Development

Developing an ML pipeline

The following example provides steps required for creating the machine learning pipeline and is used in the training process. After the model is trained, it is used for predictions that retrain the entire pipeline to automatically extract the features and predict the input data using Spark.

Create a Spark data frame for the input data by doing the following:

from pyspark.ml import Pipelinefrom pyspark.ml.classification import LogisticRegressionfrom pyspark.ml.feature import HashingTF, Tokenizerfrom pyspark.sql import SparkSessiontraining = spark.createDataFrame([        (0, "test iiot", 1.0),        (1, "validate", 0.0),        (2, "train iiot validate", 1.0),        (3, "gartner test", 0.0)    ], ["id", "data", "label"])training.show()

The training ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Hands-On Industrial Internet of Things

Hands-On Industrial Internet of Things

Giacomo Veneri, Antonio Capasso
What Employees Want Most in Uncertain Times

What Employees Want Most in Uncertain Times

Kristine W. Powers, Jessica B.B. Diaz

Publisher Resources

ISBN: 9781788298599Supplemental Content