Applied Intelligent Decision Making in Machine Learning
  1. 260 pages
  2. English
  3. ePUB (mobile friendly)
  4. Available on iOS & Android
eBook - ePub

About this book

The objective of this edited book is to share the outcomes from various research domains to develop efficient, adaptive, and intelligent models to handle the challenges related to decision making. It incorporates the advances in machine intelligent techniques such as data streaming, classification, clustering, pattern matching, feature selection, and deep learning in the decision-making process for several diversified applications such as agriculture, character recognition, landslide susceptibility, recommendation systems, forecasting air quality, healthcare, exchange rate prediction, and image dehazing. It also provides a premier interdisciplinary platform for scientists, researchers, practitioners, and educators to share their thoughts in the context of recent innovations, trends, developments, practical challenges, and advancements in the field of data mining, machine learning, soft computing, and decision science. It also focuses on the usefulness of applied intelligent techniques in the decision-making process in several aspects.

To address these objectives, this edited book includes a dozen chapters contributed by authors from around the globe. The authors attempt to solve these complex problems using several intelligent machine-learning techniques. This allows researchers to understand the mechanism needed to harness the decision-making process using machine-learning techniques for their own respective endeavors.

Frequently asked questions

Yes, you can cancel anytime from the Subscription tab in your account settings on the Perlego website. Your subscription will stay active until the end of your current billing period. Learn how to cancel your subscription.
No, books cannot be downloaded as external files, such as PDFs, for use outside of Perlego. However, you can download books within the Perlego app for offline reading on mobile or tablet. Learn more here.
Perlego offers two plans: Essential and Complete
  • Essential is ideal for learners and professionals who enjoy exploring a wide range of subjects. Access the Essential Library with 800,000+ trusted titles and best-sellers across business, personal growth, and the humanities. Includes unlimited reading time and Standard Read Aloud voice.
  • Complete: Perfect for advanced learners and researchers needing full, unrestricted access. Unlock 1.4M+ books across hundreds of subjects, including academic and specialized titles. The Complete Plan also includes advanced features like Premium Read Aloud and Research Assistant.
Both plans are available with monthly, semester, or annual billing cycles.
We are an online textbook subscription service, where you can get access to an entire online library for less than the price of a single book per month. With over 1 million books across 1000+ topics, we’ve got you covered! Learn more here.
Look out for the read-aloud symbol on your next book to see if you can listen to it. The read-aloud tool reads text aloud for you, highlighting the text as it is being read. You can pause it, speed it up and slow it down. Learn more here.
Yes! You can use the Perlego app on both iOS or Android devices to read anytime, anywhere — even offline. Perfect for commutes or when you’re on the go.
Please note we cannot support devices running on iOS 13 and Android 7 or earlier. Learn more about using the app.
Yes, you can access Applied Intelligent Decision Making in Machine Learning by Himansu Das, Jitendra Kumar Rout, Suresh Chandra Moharana, Nilanjan Dey, Himansu Das,Jitendra Kumar Rout,Suresh Chandra Moharana,Nilanjan Dey in PDF and/or ePUB format, as well as other popular books in Computer Science & Programming Games. We have over one million books available in our catalogue for you to explore.

Information


1 Data Stream Mining for Big Data

Chandresh Kumar Maurya

Contents

1.1Introduction
1.2Research Issues in Data Stream Mining
1.3Filtering and Counting in a Data Stream
1.3.1Bloom Filters
1.3.2Counting the Frequency of Items in a Stream
1.3.3Count Unique Items in a Data Stream
1.4Sampling from Data Streams
1.5Concept Drift Detection in Data Streams
1.5.1Causes of Concept Drift
1.5.2Handling Concept Drift
1.5.2.1CUSUM Algorithm
1.5.2.2The Higia Algorithm
1.5.2.3Dynamic Weighted Majority Algorithm
1.6Discussion
References

1.1Introduction

There are two kinds of learning, based on how the data is processed. In batch learning, the data is processed in chunks and often offline. Another type of learning is called online learning, usually performed on streaming data. Another name for online learning is incremental learning. Our focus in this chapter will be incremental learning on streaming data.
A data stream is characterized by certain properties according to Gama (2010):
  • Unbounded size:
    • Transient (lasts for only few seconds or minutes);
    • Single-pass over data;
    • Only summaries can be stored;
    • Real-time processing (in-memory).
  • Data streams are not static:
    • Incremental/decremental updates;
    • Concept drifts.
  • Temporal order may be important.
Traditional algorithms developed for offline processing of the data are not suitable for streaming data due to these issues. There are a few models that are incremental such as K-nearest neighbors (KNN) and naive Bayes. But, still, these models cannot cope with all the issues present in streaming data. For example, if there is a concept drift present in the data, a separate concept-drift detection and alleviation technique needs to be developed. Many researchers have proposed various models for streaming data which tackles some of the issues above. We will look at some of these techniques in detail in the coming sections.
As shown in Figure 1.1, a stream processor takes as input a stream of data such as 0, 1, 1, 0, 1, …. The processor can sample from the stream and process it in main memory, such as when answering a query, and the result of the processing can be dumped into the back-end, such as the hard drive, for downstream tasks if required. Most of the algorithms presented in the subsequent sections will be based on this generic model.
image
Figure 1.1 General stream processing model.
Data stream mining finds application in several domains such as answering user queries over the web, sensor data (Das et al., 2019; Dey et al., 2019), analyzing network packets, patient health monitoring, and surveillance systems to name a few. Because of the vast application area of the field, I will present some selected case studies in the field at the end of the chapter.
The rest of the chapter is as follows. Re...

Table of contents

  1. Cover
  2. Half Title
  3. Series Page
  4. Title Page
  5. Copyright Page
  6. Table of Contents
  7. Preface
  8. Notes on the Editors and Contributors
  9. 1ā€ƒData Stream Mining for Big Data
  10. 2ā€ƒDecoding Common Machine Learning Methods Agricultural Application Case Studies Using Open Source Software
  11. 3ā€ƒA Multi-Stage Hybrid Model for Odia Compound Character Recognition
  12. 4ā€ƒDevelopment of Hybrid Computational Approaches for Landslide Susceptibility Mapping Using Remotely Sensed Data in East Sikkim, India
  13. 5ā€ƒDomain-Specific Journal Recommendation Using a Feed Forward Neural Network
  14. 6ā€ƒForecasting Air Quality in India through an Ensemble Clustering Technique
  15. 7ā€ƒAn Intelligence-Based Health Biomarker Identification System Using Microarray Analysis
  16. 8ā€ƒExtraction of Medical Entities Using a Matrix-Based Pattern-Matching Method
  17. 9ā€ƒSupporting Environmental Decision Making Application of Machine Learning Techniques to Australia’s Emissions
  18. 10ā€ƒPrediction Analysis of Exchange Rate Forecasting Using Deep Learning-Based Neural Network Models
  19. 11ā€ƒOptimal Selection of Features Using Teaching-Learning-Based Optimization Algorithm for Classification
  20. 12ā€ƒAn Enhanced Image Dehazing Procedure Using CLAHE and a Guided Filter
  21. Index