Difference between revisions of "SVM"

From UConn PAN
Jump to navigation Jump to search
Line 3: Line 3:
  
  
<u><b>The following are some useful YouTube videos:</b></u>
+
<u><b>The following are some useful YouTube videos:</b></u> <br>
 +
 
 +
<html>
 +
  <head>
 +
    <title>YouTube Video Click-to-Play</title>
 +
  </head>
 +
  <body>
 +
    <div id="video-container">
 +
      <button onclick="loadVideo('efR1C6CvhmE')">Click to Play</button>
 +
    </div>
 +
 
 +
    <script>
 +
      function loadVideo(videoId) {
 +
        var container = document.getElementById('video-container');
 +
        var videoUrl = 'https://www.youtube.com/embed/' + videoId;
 +
 
 +
        var iframe = document.createElement('iframe');
 +
        iframe.src = videoUrl;
 +
        iframe.width = 960;
 +
        iframe.height = 540;
 +
        iframe.setAttribute('allow', 'autoplay');
 +
        container.innerHTML = ''; // Clear existing content
 +
        container.appendChild(iframe);
 +
      }
 +
    </script>
 +
  </body>
 +
</html>
 +
 
 +
 
  
 
=== <u>Part 1</u> ===
 
=== <u>Part 1</u> ===
Line 23: Line 51:
 
         var iframe = document.createElement('iframe');
 
         var iframe = document.createElement('iframe');
 
         iframe.src = videoUrl;
 
         iframe.src = videoUrl;
         iframe.width = 400;
+
         iframe.width = 960;
         iframe.height = 240;
+
         iframe.height = 540;
 
         iframe.setAttribute('allow', 'autoplay');
 
         iframe.setAttribute('allow', 'autoplay');
 
         container.innerHTML = ''; // Clear existing content
 
         container.innerHTML = ''; // Clear existing content
Line 54: Line 82:
 
         var iframe = document.createElement('iframe');
 
         var iframe = document.createElement('iframe');
 
         iframe.src = videoUrl;
 
         iframe.src = videoUrl;
         iframe.width = 400;
+
         iframe.width = 960;
         iframe.height = 240;
+
         iframe.height = 540;
 
         iframe.setAttribute('allow', 'autoplay');
 
         iframe.setAttribute('allow', 'autoplay');
 
         container.innerHTML = ''; // Clear existing content
 
         container.innerHTML = ''; // Clear existing content
Line 85: Line 113:
 
         var iframe = document.createElement('iframe');
 
         var iframe = document.createElement('iframe');
 
         iframe.src = videoUrl;
 
         iframe.src = videoUrl;
         iframe.width = 400;
+
         iframe.width = 960;
         iframe.height = 240;
+
         iframe.height = 540;
 
         iframe.setAttribute('allow', 'autoplay');
 
         iframe.setAttribute('allow', 'autoplay');
 
         container.innerHTML = ''; // Clear existing content
 
         container.innerHTML = ''; // Clear existing content

Revision as of 19:30, 22 May 2023

Support Vector Machines

Support Vector Machines (SVM) are a class of machine learning algorithms used for classification and regression tasks. In a classification problem, SVMs aim to find an optimal hyperplane that separates different classes of data points with the largest possible margin. The hyperplane is a decision boundary that maximizes the distance between the nearest data points from each class, known as support vectors. SVMs can handle both linearly separable and non-linearly separable data by employing various kernel functions. The idea behind SVMs is to transform input data into a higher-dimensional feature space using the kernel trick, which allows the algorithm to find a linear separation in this transformed space. This transformation enables SVMs to handle complex decision boundaries that may not be linear in the original feature space. During the training phase, SVMs aim to find the optimal hyperplane by solving a quadratic optimization problem. The objective is to minimize the classification error while maximizing the margin. The margin is defined as the perpendicular distance between the hyperplane and the support vectors. By maximizing the margin, SVMs tend to produce a more robust and generalized model. In addition to binary classification, SVMs can be extended to handle multi-class problems using techniques such as one-vs-one or one-vs-all classification. SVMs also have a formulation for regression tasks, known as Support Vector Regression (SVR), where the objective is to fit the data while limiting the deviations within a certain margin. SVMs have several advantages, such as their ability to handle high-dimensional data, effective generalization, and resistance to overfitting. They can be computationally expensive, particularly with large datasets, and the selection of the appropriate kernel and its parameters can be challenging.


The following are some useful YouTube videos:

YouTube Video Click-to-Play


Part 1

A run down of what SVMs are and what they can be used for. All of the necessary background to get started with using SVMs.
YouTube Video Click-to-Play

Support Vector Machines Main Ideas


Part 2

A mathematical description of the Polynomial Kernel and how SVMs use this type of kernel to classify data. This video describes how the Polynomial Kernel classifies data in a set number of dimensions.
YouTube Video Click-to-Play

The Polynomial Kernel


Part 3

A mathematical description of the Radial Kernel and how SVMs use this type of kernel to classify data. This video describes how the RBF classifies data in infinite dimensions.
YouTube Video Click-to-Play

The Radial (RBF) Kernel