Compare different ways in which neural networks can be used to recognize patterns: Difference between revisions

From Computer Science Wiki
No edit summary
No edit summary
Line 6: Line 6:


=== Supervised learning ===
=== Supervised learning ===
Supervised learning is the machine learning task of learning a function that maps an input to an output based on example input-output pairs.  
Supervised learning is the machine learning task of learning a function that maps an input to an output based on example input-output pairs.  
  It infers a function from labeled training data consisting of a set of training examples.  In supervised learning, each example is a pair consisting of an input object (typically a vector) and a desired output value (also called the supervisory signal). A supervised learning algorithm analyzes the training data and produces an inferred function, which can be used for mapping new examples. An optimal scenario will allow for the algorithm to correctly determine the class labels for unseen instances<ref>https://en.wikipedia.org/wiki/Supervised_learning</ref>
  It infers a function from labeled training data consisting of a set of training examples.  In supervised learning, each example is a pair consisting of an input object (typically a vector) and a desired output value (also called the supervisory signal). A supervised learning algorithm analyzes the training data and produces an inferred function, which can be used for mapping new examples. An optimal scenario will allow for the algorithm to correctly determine the class labels for unseen instances<ref>https://en.wikipedia.org/wiki/Supervised_learning</ref>




== Unsupervised learning ===
=== Unsupervised learning ===


Unsupervised learning is a branch of machine learning that learns from test data that has not been labeled, classified or categorized. Instead of responding to feedback, unsupervised learning identifies commonalities in the data and reacts based on the presence or absence of such commonalities in each new piece of data. Alternatives include supervised learning and reinforcement learning.<ref>https://en.wikipedia.org/wiki/Unsupervised_learning</ref>
Unsupervised learning is a branch of machine learning that learns from test data that has not been labeled, classified or categorized. Instead of responding to feedback, unsupervised learning identifies commonalities in the data and reacts based on the presence or absence of such commonalities in each new piece of data. Alternatives include supervised learning and reinforcement learning.<ref>https://en.wikipedia.org/wiki/Unsupervised_learning</ref>


=== a helpful video ==


[https://www.youtube.com/watch?v=kE5QZ8G_78c This video is good to understand the difference of supervised vs unsupervised learning]
== From the IB ==  
== From the IB ==  



Revision as of 21:30, 11 February 2019

HL content: Modeling & Simulation[1]

Introduction[edit]

There are essentially two ways neural networks can recognize patterns:

Supervised learning[edit]

Supervised learning is the machine learning task of learning a function that maps an input to an output based on example input-output pairs.

It infers a function from labeled training data consisting of a set of training examples.  In supervised learning, each example is a pair consisting of an input object (typically a vector) and a desired output value (also called the supervisory signal). A supervised learning algorithm analyzes the training data and produces an inferred function, which can be used for mapping new examples. An optimal scenario will allow for the algorithm to correctly determine the class labels for unseen instances[2]


Unsupervised learning[edit]

Unsupervised learning is a branch of machine learning that learns from test data that has not been labeled, classified or categorized. Instead of responding to feedback, unsupervised learning identifies commonalities in the data and reacts based on the presence or absence of such commonalities in each new piece of data. Alternatives include supervised learning and reinforcement learning.[3]

= a helpful video[edit]

This video is good to understand the difference of supervised vs unsupervised learning

From the IB[edit]

The concepts of supervised and unsupervised learning should be applied to the examples above and to any clearly explained example presented in the examination, as should the importance of genetic algorithms.

Standards[edit]

  • Compare different ways in which neural networks can be used to recognize patterns

References[edit]