Difference between revisions of "Machine Learning"

From Cyborg Anthropology
Jump to: navigation, search
(added section on search engines)
Line 12: Line 12:
 
A program can be trained from security camera images to recognize whether a person is present in the frame. Someone would first train the program by giving it several images without a person present in the frame as the negative input, and then give it several images with a person in the frame as the positive input. The program would then be able to classify future images it is given with reasonable accuracy. This would allow a computer to take an action based on whether it sees a person or not.
 
A program can be trained from security camera images to recognize whether a person is present in the frame. Someone would first train the program by giving it several images without a person present in the frame as the negative input, and then give it several images with a person in the frame as the positive input. The program would then be able to classify future images it is given with reasonable accuracy. This would allow a computer to take an action based on whether it sees a person or not.
  
More recently, machine learning has been applied to create search engine algorithms. Researchers at Cornell University created a prototype, [http://www.cs.cornell.edu/~tj/striver/ STRIVER], which improves its results over time based on which results the visitor clicks on.<ref>http://www.cs.cornell.edu/~tj/striver/</ref>  
+
More recently, machine learning has been applied to create search engine algorithms. Researchers at Cornell University created a prototype, [STRIVER http://www.cs.cornell.edu/~tj/striver/], which improves its results over time based on which results the visitor clicks on.<ref>Ibid.</ref>  
  
 
==References==
 
==References==
Line 19: Line 19:
 
[[Category:Book Pages]]
 
[[Category:Book Pages]]
 
[[Category:Marked for Editing]]
 
[[Category:Marked for Editing]]
 +
 +
__NOTOC__

Revision as of 19:35, 30 June 2011

Definition

Machine Learning is a process of training a computer algorithm to properly classify future inputs after having trained the algorithm with sample data.

Tom M. Mitchell provided a widely quoted definition: "A computer program is said to learn from experience E with respect to some class of tasks T and performance measure P, if its performance at tasks in T, as measured by P, improves with experience E."[1]

A program is first trained with known inputs, and "learns" these patterns through one or more statistical methods. Then it can classify new input based on the inputs it has seen before. Machine Learning is often used in computer vision to classify images. [2]

History

Ray Solomonoff published the first report on non-semantic machine learning in 1956, titled "An Inductive Inference Machine."[3] He also was a pioneer in algorithmic probability, publishing several papers in the 1960s. It wasn't until the late 1970s that machine learning started emerging as a more focused field of study in computer vision. Machine learning has also been applied in many other fields such as natural language processing, speech and handwriting recognition, and sentiment analysis.

Examples

A program can be trained from security camera images to recognize whether a person is present in the frame. Someone would first train the program by giving it several images without a person present in the frame as the negative input, and then give it several images with a person in the frame as the positive input. The program would then be able to classify future images it is given with reasonable accuracy. This would allow a computer to take an action based on whether it sees a person or not.

More recently, machine learning has been applied to create search engine algorithms. Researchers at Cornell University created a prototype, [STRIVER http://www.cs.cornell.edu/~tj/striver/], which improves its results over time based on which results the visitor clicks on.[4]

References

  1. Mitchell, T. (1997). Machine Learning, McGraw Hill. ISBN 0-07-042807-7, p.2.
  2. Machine Learning in Computer Vision. Ajay Joshi, Anoop Cherian and Ravishankar Shivalingam. Dept. of Computer Science, University of Minnesota
  3. http://world.std.com/~rjs/indinf56.pdf
  4. Ibid.