Knowledge Discovery with Support Vector Machines
eBook - ePub

Knowledge Discovery with Support Vector Machines

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

Knowledge Discovery with Support Vector Machines

Book details
Book preview
Table of contents
Citations

About This Book

An easy-to-follow introduction to support vector machines

This book provides an in-depth, easy-to-follow introduction to support vector machines drawing only from minimal, carefully motivated technical and mathematical background material. It begins with a cohesive discussion of machine learning and goes on to cover:

  • Knowledge discovery environments

  • Describing data mathematically

  • Linear decision surfaces and functions

  • Perceptron learning

  • Maximum margin classifiers

  • Support vector machines

  • Elements of statistical learning theory

  • Multi-class classification

  • Regression with support vector machines

  • Novelty detection

Complemented with hands-on exercises, algorithm descriptions, and data sets, Knowledge Discovery with Support Vector Machines is an invaluable textbook for advanced undergraduate and graduate courses. It is also an excellent tutorial on support vector machines for professionals who are pursuing research in machine learning and related areas.

Frequently asked questions

Simply head over to the account section in settings and click on “Cancel Subscription” - it’s as simple as that. After you cancel, your membership will stay active for the remainder of the time you’ve paid for. Learn more here.
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.
Both plans give you full access to the library and all of Perlego’s features. The only differences are the price and subscription period: With the annual plan you’ll save around 30% compared to 12 months on the monthly plan.
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 access Knowledge Discovery with Support Vector Machines by Lutz H. Hamel in PDF and/or ePUB format, as well as other popular books in Computer Science & Data Mining. We have over one million books available in our catalogue for you to explore.

Information

Year
2011
ISBN
9781118211038
Edition
1
PART I
CHAPTER 1
WHAT IS KNOWLEDGE DISCOVERY?
Knowledge discovery is a semiautomated process of extracting useful information from collections of data that are too big to be investigated manually. By semiautomated we mean that we use computer-based tools for the discovery process but that guidance by an analyst is indispensable. The information retrieved by the discovery process usually takes on the form of actionable or explanatory patterns often referred to as models. There are many different types of models. For instance, we have models that are represented as if–then–else rules as well as models that implement artificial neural networks. All models have the desirable property that they tend to ignore unnecessary detail and summarize the major trends in data. A model can represent or summarize terabytes of data and therefore provides access to information or knowledge hidden in large amounts of data. In this book we deal with one particular type of model called a support vector machine. Support vector machines represent a powerful new class of models invented by Vladimir Vapnik in the early 1990s. They have been shown to be competitive with artificial neural networks and outperform them in many cases.
A term that is often associated with knowledge discovery is data mining. Data mining can be considered a specific kind of knowledge discovery process that aims at extracting information from databases. Data mining is often referred to as knowledge discovery in databases (KDD).
Knowledge discovery is a highly interdisciplinary undertaking ranging from domain analysis, data cleansing, and visualization to model evaluation and deployment (see Figure 1.1). However, at the core of the knowledge discovery process is a discovery algorithm that performs some kind of pattern recognition and constructs models of the data encountered. The discovery algorithms we are concerned with in
FIGURE 1.1 The knowledge discovery process: from data to information.
c01f001_fmt
this book are based on machine learning. Let us start by defining what we mean by machine learning.
1.1 MACHINE LEARNING
Phenomena whose behavior we can observe exist all around us. Consider, for example, the orbits of the planets around the sun or the timing of the tides. The central question in machine learning is: Can we use computers to discover and describe patterns based on these behaviors? The answer to this question is a resounding “yes” and it is the topic of the remainder of the book.
Perhaps the easiest way to describe phenomena is through classification. Here, a particular object either belongs to a class of objects or it does not. When we see a cat, we easily recognize that it belongs to the class of mammals, and when we see a crow, we recognize that it belongs to the class of birds. Abstractly speaking, we can imagine that there exists some process in connection with some phenomenon that labels objects as true if they belong to the class in question or false if they do not belong to the class. In our case, we have mammal (cat) = true and mammal (crow) = false, as well as bird (cat) = false and bird (crow) = true. Here, mammal and bird are processes that provide the labels for any object according to the class of mammals and the class of birds, respectively. Typically, classifications are not as easy as mammals and birds, and in general we do not have access to the processes that label the objects. We can only observe the consequences of these processes: the observable labels for each object. The goal of machine learning then is to compute a suitable model for a labeling process that approximates the original process as closely as possible. The following definition states this more formally.
Definition 1.1 (Machine Learning)
Given:
  • A data universe X
  • A sample set S, where S
    2282_fmt
    X
  • Some target function (labeling process) f : X → {true, false}
  • A labeled training set D, where D = {(x, y) | x
    2208_fmt
    S and y = f (x)}
Compute a function
f-caret_fmt
: X → {true, false} using D such that
(1.1)
c01e001_fmt
for all x
...

Table of contents

  1. Cover
  2. Title
  3. Copyright
  4. Dedication
  5. Preface
  6. Wiley Series on Methods and Applications in Data Mining
  7. PART I
  8. PART II
  9. PART III
  10. APPENDIX A NOTATION
  11. APPENDIX B TUTORIAL INTRODUCTION TO R
  12. REFERENCES
  13. INDEX