Data Classification
eBook - ePub

Data Classification

Algorithms and Applications

  1. 707 pages
  2. English
  3. ePUB (mobile friendly)
  4. Available on iOS & Android
eBook - ePub

Data Classification

Algorithms and Applications

About this book

Comprehensive Coverage of the Entire Area of ClassificationResearch on the problem of classification tends to be fragmented across such areas as pattern recognition, database, data mining, and machine learning. Addressing the work of these different communities in a unified way, Data Classification: Algorithms and Applications explores the underlyi

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.
At the moment all of our mobile-responsive ePub books are available to download via the app. Most of our PDFs are also available to download and we're working on making the final remaining ones downloadable now. 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 Data Classification by Charu C. Aggarwal in PDF and/or ePUB format, as well as other popular books in Economics & Statistics for Business & Economics. We have over one million books available in our catalogue for you to explore.
Chapter 1

An Introduction to Data Classification

Charu C. Aggarwal
IBM T. J. Watson Research Center
Yorktown Heights, NY

[email protected]

1.1 Introduction

The problem of data classification has numerous applications in a wide variety of mining applications. This is because the problem attempts to learn the relationship between a set of feature variables and a target variable of interest. Since many practical problems can be expressed as associations between feature and target variables, this provides a broad range of applicability of this model. The problem of classification may be stated as follows:
Given a set of training data points along with associated training labels, determine the class label for an unlabeled test instance.
Numerous variations of this problem can be defined over different settings. Excellent overviews on data classification may be found in [39, 50, 63, 85]. Classification algorithms typically contain two phases:
  • Training Phase: In this phase, a model is constructed from the training instances.
  • Testing Phase: In this phase, the model is used to assign a label to an unlabeled test instance.
In some cases, such as lazy learning, the training phase is omitted entirely, and the classification is performed directly from the relationship of the training instances to the test instance. Instance-based methods such as the nearest neighbor classifiers are examples of such a scenario. Even in such cases, a pre-processing phase such as a nearest neighbor index construction may be performed in order to ensure efficiency during the testing phase.
The output of a classification algorithm may be presented for a test instance in one of two ways:
  1. Discrete Label: In this case, a label is returned for the test instance.
  2. Numerical Score: In this case, a numerical score is returned for each class label and test instance combination. Note that the numerical score can be converted to a discrete label for a test instance, by picking the class with the highest score for that test instance. The advantage of a numerical score is that it now becomes possible to compare the relative propensity of different test instances to belong to a particular class of importance, and rank them if needed. Such methods are used often in rare class detection problems, where the original class distribution is highly imbalanced, and the discovery of some classes is more valuable than others.
The classification problem thus segments the unseen test instances into groups, as defined by the class label. While the segmentation of examples into groups is also done by clustering, there is a key difference between the two problems. In the case of clustering, the segmentation is done using similarities between the feature variables, with no prior understanding of the structure of the groups. In the case of classification, the segmentation is done on the basis of a training data set, which encodes knowledge about the structure of the groups in the form of a target variable. Thus, while the segmentations of the data are usually related to notions of similarity, as in clustering, significant deviations from the similarity-based segmentation may be achieved in practical settings. As a result, the classification problem is referred to as supervised learning, just as clustering is referred to as unsupervised learning. The supervision process often provides significant application-specific utility, because the class labels may represent important properties of interest.
Some common application domains in which the classification problem arises, are as follows:
  • Customer Target Marketing: Since the classification problem relates feature variables to target classes, this method is extremely popular for the problem of customer target marketing. In such cases, feature variables describing the customer may be used to predict their buying interests on the basis of previous training examples. The target variable may encode the buying interest of the customer.
  • Medical Disease Diagnosis: In recent years, the use of data mining methods in medical technology has gained increasing traction. The features may be extracted from the medical records, and the class labels correspond to whether or not a patient may pick up a disease in the future. In these cases, it is desirable to make disease predictions with the use of such information.
  • Supervised Event Detection: In many temporal scenarios, class labels may be associated with time stamps corresponding to unusual events. For example, an intrusion activity may be represented as a class label. In such cases, time-series classification methods can be very useful.
  • Multim...

Table of contents

  1. Preliminaries
  2. Series
  3. Dedication
  4. Editor Biography
  5. Contributors
  6. Preface
  7. Chapter 1 An Introduction to Data Classification
  8. Chapter 2 Feature Selection for Classification: A Review
  9. Chapter 3 Probabilistic Models for Classification
  10. Chapter 4 Decision Trees: Theory and Algorithms
  11. Chapter 5 Rule-Based Classification
  12. Chapter 6 Instance-Based Learning: A Survey
  13. Chapter 7 Support Vector Machines
  14. Chapter 8 Neural Networks: A Review
  15. Chapter 9 A Survey of Stream Classification Algorithms
  16. Chapter 10 Big Data Classification
  17. Chapter 11 Text Classification
  18. Chapter 12 Multimedia Classification
  19. Chapter 13 Time Series Data Classification
  20. Chapter 14 Discrete Sequence Classification
  21. Chapter 15 Collective Classification of Network Data
  22. Chapter 16 Uncertain Data Classification
  23. Chapter 17 Rare Class Learning
  24. Chapter 18 Distance Metric Learning for Data Classification
  25. Chapter 19 Ensemble Learning
  26. Chapter 20 Semi-Supervised Learning
  27. Chapter 21 Transfer Learning
  28. Chapter 22 Active Learning: A Survey
  29. Chapter 23 Visual Classification
  30. Chapter 24 Evaluation of Classification Methods
  31. Chapter 25 Educational and Software Resources for Data Classification