• Complain

Sayan Putatunda - Practical Machine Learning for Streaming Data with Python: Design, Develop, and Validate Online Learning Models

Here you can read online Sayan Putatunda - Practical Machine Learning for Streaming Data with Python: Design, Develop, and Validate Online Learning Models full text of the book (entire story) in english for free. Download pdf and epub, get meaning, cover and reviews about this ebook. year: 2021, publisher: Apress, genre: Computer. Description of the work, (preface) as well as reviews are available. Best literature library LitArk.com created for fans of good reading and offers a wide selection of genres:

Romance novel Science fiction Adventure Detective Science History Home and family Prose Art Politics Computer Non-fiction Religion Business Children Humor

Choose a favorite category and find really read worthwhile books. Enjoy immersion in the world of imagination, feel the emotions of the characters or learn something new for yourself, make an fascinating discovery.

Sayan Putatunda Practical Machine Learning for Streaming Data with Python: Design, Develop, and Validate Online Learning Models
  • Book:
    Practical Machine Learning for Streaming Data with Python: Design, Develop, and Validate Online Learning Models
  • Author:
  • Publisher:
    Apress
  • Genre:
  • Year:
    2021
  • Rating:
    5 / 5
  • Favourites:
    Add to favourites
  • Your mark:
    • 100
    • 1
    • 2
    • 3
    • 4
    • 5

Practical Machine Learning for Streaming Data with Python: Design, Develop, and Validate Online Learning Models: summary, description and annotation

We offer to read an annotation, description, summary or preface (depends on what the author of the book "Practical Machine Learning for Streaming Data with Python: Design, Develop, and Validate Online Learning Models" wrote himself). If you haven't found the necessary information about the book — write in the comments, we will try to find it.

Design, develop, and validate machine learning models with streaming data using the Scikit-Multiflow framework. This book is a quick start guide for data scientists and machine learning engineers looking to implement machine learning models for streaming data with Python to generate real-time insights.

Youll start with an introduction to streaming data, the various challenges associated with it, some of its real-world business applications, and various windowing techniques. Youll then examine incremental and online learning algorithms, and the concept of model evaluation with streaming data and get introduced to the Scikit-Multiflow framework in Python. This is followed by a review of the various change detection/concept drift detection algorithms and the implementation of various datasets using Scikit-Multiflow.

Introduction to the various supervised and unsupervised algorithms for streaming data, and their implementation on various datasets using Python are also covered. The book concludes by briefly covering other open-source tools available for streaming data such as Spark, MOA (Massive Online Analysis), Kafka, and more.


What Youll Learn
  • Understand machine learning with streaming data concepts
  • Review incremental and online learning
  • Develop models for detecting concept drift
  • Explore techniques for classification, regression, and ensemble learning in streaming data contexts
  • Apply best practices for debugging and validating machine learning models in streaming data context
  • Get introduced to other open-source frameworks for handling streaming data.
Who This Book Is For
Machine learning engineers and data science professionals

Sayan Putatunda: author's other books


Who wrote Practical Machine Learning for Streaming Data with Python: Design, Develop, and Validate Online Learning Models? Find out the surname, the name of the author of the book and a list of all author's works by series.

Practical Machine Learning for Streaming Data with Python: Design, Develop, and Validate Online Learning Models — read online for free the complete book (whole text) full work

Below is the text of the book, divided by pages. System saving the place of the last page read, allows you to conveniently read the book "Practical Machine Learning for Streaming Data with Python: Design, Develop, and Validate Online Learning Models" online for free, without having to search again every time where you left off. Put a bookmark, and you can go to the page where you finished reading at any time.

Light

Font size:

Reset

Interval:

Bookmark:

Make
Contents
Landmarks
Book cover of Practical Machine Learning for Streaming Data with Python - photo 1
Book cover of Practical Machine Learning for Streaming Data with Python
Sayan Putatunda
Practical Machine Learning for Streaming Data with Python
Design, Develop, and Validate Online Learning Models
1st ed.
Logo of the publisher Sayan Putatunda Bangalore India Any source code or - photo 2
Logo of the publisher
Sayan Putatunda
Bangalore, India

Any source code or other supplementary material referenced by the author in this book is available to readers on GitHub via the books product page, located at www.apress.com/978-1-4842-6866-7 . For more detailed information, please visit http://www.apress.com/source-code .

ISBN 978-1-4842-6866-7 e-ISBN 978-1-4842-6867-4
https://doi.org/10.1007/978-1-4842-6867-4
Sayan Putatunda 2021
Apress Standard
The use of general descriptive names, registered names, trademarks, service marks, etc. in this publication does not imply, even in the absence of a specific statement, that such names are exempt from the relevant protective laws and regulations and therefore free for general use.
The publisher, the authors and the editors are safe to assume that the advice and information in this book are believed to be true and accurate at the date of publication. Neither the publisher nor the authors or the editors give a warranty, expressed or implied, with respect to the material contained herein or for any errors or omissions that may have been made. The publisher remains neutral with regard to jurisdictional claims in published maps and institutional affiliations.
Distributed to the book trade worldwide by Springer Science+Business Media LLC, 1 New York Plaza, Suite 4600, New York, NY 10004. Phone 1-800-SPRINGER, fax (201) 348-4505, e-mail orders-ny@springer-sbm.com, or visit www.springeronline.com. Apress Media, LLC is a California LLC and the sole member (owner) is Springer Science + Business Media Finance Inc (SSBM Finance Inc). SSBM Finance Inc is a Delaware corporation.

To my family

Dr. Sayan Putatunda

Introduction

Advancements in technology have made the continuous collection of data possible. We are inundated with data in various daily transactions (e.g., POS transactions in retail outlets like Walmart, Target, etc.), sensor data, web data, social media data, stock prices, search queries, clickstream data, and so forth. This is all a source for high-velocity data; that is, streaming data.

This book is a quick-start guide for beginners to learn, understand, and implement various machine learning models on streaming data to generate real-time insights using Python. Streaming data is defined and infinite and continuous inflow of data at a high pace. Most of the machine learning models that we deal with are in the batch context. However, batch learning models are not suitable for handling streaming data as multiple passes over the data are not possible. The batch models may soon become outdated due to concept drift (i.e., the data distribution changes over time). Other challenges of streaming data include memory limitations and the high speed of data accumulation, which led to the development of a different class of methods, known as incremental or online learning methods.

The industrys adoption of various online learning/incremental learning methods has been quite slow over the years, but things are now changing quickly due to the vast applications of real-time machine learning. So, these techniques should be a part of a data scientists repertoire!

This book is suitable for data scientists, machine learning engineers, researchers, software engineers, academicians, and data science aspirants with basic programming skills in Python and keen on exploring machine learning with streaming data for a career move or an enterprise/academic project.

This book focuses on an end-to-end accelerated track delving into a holistic approach to develop concept drift detection algorithms, supervised learning algorithms (for regression and classification tasks), and unsupervised learning algorithms implemented in Python. Overall, this book comprises four chapters.

Chapter introduces the concept of streaming data, its various challenges, some of its real-world business applications, and various windowing techniques. This chapter also introduces the concepts of incremental and online learning algorithms and the scikit-multiflow framework in Python.

Chapter covers the various change detection/concept drift detection algorithms and their implementation on various datasets using scikit-multiflow.

Chapter discusses the various regression and classification algorithms for streaming data (including ensemble learning) and its implementation on various datasets.

Finally, Chapter introduces unsupervised learning for streaming data. It also provides a brief overview of other open source tools for handling streaming data, such as Spark Streaming, Massive Online Analysis (MOA), and more.

Acknowledgements

I would like to thank all those who have contributed to bringing this book to publication for their help, support, and input. I would like to give a heartfelt dedication to my mother (Mrs. Mili Putatunda) and my father (Mr. Supriya Putatunda) for their lifelong love, support, and encouragement in all aspects of my life. My special thanks to my wife (Mrs. Srijani Putatunda) for her support and encouragement. I am indebted to my thesis adviser, Prof. Arnab Kumar Laha, for introducing me to this wonderful research topic (i.e., analysis of streaming data) during my PhD days at IIM Ahmedabad and for having countless captivating and patient conversations with me.

I would also like to thank and appreciate the efforts of the editors of this book, Celestin John, James Markham, and Shrikant Vishwakarma, at Apress/Springer for their essential encouragement.

Dr. Sayan Putatunda

Kolkata, India

January 2021

Table of Contents
About the Author
Dr. Sayan Putatunda
is an experienced data scientist and researcher He holds a PhD in applied - photo 3

is an experienced data scientist and researcher. He holds a PhD in applied statistics and machine learning from the Indian Institute of Management, Ahmedabad (IIMA), where his research was on streaming data and its applications in the transportation industry. He has a rich experience of working in both senior individual contributor and managerial roles in the data science industry with companies such as Amazon, VMware, Mu Sigma, and more. His research interests are in streaming data, deep learning, machine learning, spatial point processes, and directional statistics. As a researcher, his work has been published in top international peer-reviewed journals. He has presented his work at various reputed international machine learning and statistics conferences. He is a member of IEEE.

About the Technical Reviewer
Manohar Swamynathan
is a data science practitioner and an avid programmer with more than 13 years - photo 4

is a data science practitioner and an avid programmer, with more than 13 years of experience in various data science-related areas, including data warehousing, business intelligence (BI), analytical tool development, ad hoc analysis, predictive modeling, data science product development, consulting, formulating strategies, and executing analytics programs. Manohars career coves the life cycle of data across different domains, such as US mortgage banking, retail/e-commerce, insurance, and industrial IoT. He has a bachelors degree with a specialization in physics, mathematics, and computers. His masters degree is in project management. Hes currently living in Bengaluru, the silicon valley of India.

Next page
Light

Font size:

Reset

Interval:

Bookmark:

Make

Similar books «Practical Machine Learning for Streaming Data with Python: Design, Develop, and Validate Online Learning Models»

Look at similar books to Practical Machine Learning for Streaming Data with Python: Design, Develop, and Validate Online Learning Models. We have selected literature similar in name and meaning in the hope of providing readers with more options to find new, interesting, not yet read works.


Sebastian Raschka - Python Machine Learning
Python Machine Learning
Sebastian Raschka
Reviews about «Practical Machine Learning for Streaming Data with Python: Design, Develop, and Validate Online Learning Models»

Discussion, reviews of the book Practical Machine Learning for Streaming Data with Python: Design, Develop, and Validate Online Learning Models and just readers' own opinions. Leave your comments, write what you think about the work, its meaning or the main characters. Specify what exactly you liked and what you didn't like, and why you think so.