Difference between revisions of "Orange: kNN"

From OnnoWiki
Jump to navigation Jump to search
Line 6: Line 6:
  
 
     Data: input dataset
 
     Data: input dataset
 
 
     Preprocessor: preprocessing method(s)
 
     Preprocessor: preprocessing method(s)
  
Line 12: Line 11:
  
 
     Learner: kNN learning algorithm
 
     Learner: kNN learning algorithm
 
 
     Model: trained model
 
     Model: trained model
  
 
The kNN widget uses the kNN algorithm that searches for k closest training examples in feature space and uses their average as prediction.
 
The kNN widget uses the kNN algorithm that searches for k closest training examples in feature space and uses their average as prediction.
  
../../_images/kNN-stamped.png
+
[[File:KNN-stamped.png|center|200px|thumb]]
  
 
     A name under which it will appear in other widgets. The default name is “kNN”.
 
     A name under which it will appear in other widgets. The default name is “kNN”.
 
 
     Set the number of nearest neighbors, the distance parameter (metric) and weights as model criteria.
 
     Set the number of nearest neighbors, the distance parameter (metric) and weights as model criteria.
  
 
         Metric can be:
 
         Metric can be:
 
 
             Euclidean (“straight line”, distance between two points)
 
             Euclidean (“straight line”, distance between two points)
 
 
             Manhattan (sum of absolute differences of all attributes)
 
             Manhattan (sum of absolute differences of all attributes)
 
 
             Maximal (greatest of absolute differences between attributes)
 
             Maximal (greatest of absolute differences between attributes)
 
 
             Mahalanobis (distance between point and distribution).
 
             Mahalanobis (distance between point and distribution).
  
 
         The Weights you can use are:
 
         The Weights you can use are:
 
 
             Uniform: all points in each neighborhood are weighted equally.
 
             Uniform: all points in each neighborhood are weighted equally.
 
 
             Distance: closer neighbors of a query point have a greater influence than the neighbors further away.
 
             Distance: closer neighbors of a query point have a greater influence than the neighbors further away.
 
 
     Produce a report.
 
     Produce a report.
  
 
     When you change one or more settings, you need to click Apply, which will put a new learner on the output and, if the training examples are given, construct a new model and output it as well. Changes can also be applied automatically by clicking the box on the left side of the Apply button.
 
     When you change one or more settings, you need to click Apply, which will put a new learner on the output and, if the training examples are given, construct a new model and output it as well. Changes can also be applied automatically by clicking the box on the left side of the Apply button.
  
Examples
+
==Contoh==
  
 
The first example is a classification task on iris dataset. We compare the results of k-Nearest neighbors with the default model Constant, which always predicts the majority class.
 
The first example is a classification task on iris dataset. We compare the results of k-Nearest neighbors with the default model Constant, which always predicts the majority class.
  
../../_images/Constant-classification.png
+
[[File:Constant-classification.png|center|200px|thumb]]
  
 
The second example is a regression task. This workflow shows how to use the Learner output. For the purpose of this example, we used the housing dataset. We input the kNN prediction model into Predictions and observe the predicted values.
 
The second example is a regression task. This workflow shows how to use the Learner output. For the purpose of this example, we used the housing dataset. We input the kNN prediction model into Predictions and observe the predicted values.
  
../../_images/kNN-regression.png
+
[[File:KNN-regression.png|center|200px|thumb]]
 +
 
  
  

Revision as of 09:04, 23 January 2020

sumber: https://docs.orange.biolab.si/3/visual-programming/widgets/model/knn.html

Predict according to the nearest training instances.

Inputs

   Data: input dataset
   Preprocessor: preprocessing method(s)

Outputs

   Learner: kNN learning algorithm
   Model: trained model

The kNN widget uses the kNN algorithm that searches for k closest training examples in feature space and uses their average as prediction.

KNN-stamped.png
   A name under which it will appear in other widgets. The default name is “kNN”.
   Set the number of nearest neighbors, the distance parameter (metric) and weights as model criteria.
       Metric can be:
           Euclidean (“straight line”, distance between two points)
           Manhattan (sum of absolute differences of all attributes)
           Maximal (greatest of absolute differences between attributes)
           Mahalanobis (distance between point and distribution).
       The Weights you can use are:
           Uniform: all points in each neighborhood are weighted equally.
           Distance: closer neighbors of a query point have a greater influence than the neighbors further away.
   Produce a report.
   When you change one or more settings, you need to click Apply, which will put a new learner on the output and, if the training examples are given, construct a new model and output it as well. Changes can also be applied automatically by clicking the box on the left side of the Apply button.

Contoh

The first example is a classification task on iris dataset. We compare the results of k-Nearest neighbors with the default model Constant, which always predicts the majority class.

Constant-classification.png

The second example is a regression task. This workflow shows how to use the Learner output. For the purpose of this example, we used the housing dataset. We input the kNN prediction model into Predictions and observe the predicted values.

KNN-regression.png



Referensi


Pranala Menarik