zoukankan      html  css  js  c++  java
  • [PR & ML 1] [Introduction] Informal Basic Concepts

    最近还没更完OpenCV又开了新坑,谁教machine learning处在紧急又重要的地位呢。更新的内容总结自Pattern Recognition and Machine Learning by Christopher M. Bishop,英文书哪里都好,不过有时候表达一个意思要写好大一段啊,所以内容上只保留了精华部分。考虑应该做ML通用英文,所以没有翻译,文章中一些重要的“请读者证明”和练习用的Matlab代码也会一并更新。

    Training phase (learning phase)

    The process which determine the result function f(x) that takes the input x and generate an output prediction.

    Generalization

    The ability to categorize correctly new examples that differs from those  used for training. Generalization is a central goal in pattern recognition.

    Feature extraction

    The pre-process stage to transform the original input variables to some space of variables where, it is hoped the pattern recognition problem will be easier to solve or computation can be speeded up.

    Pattern recognition problems

    •  Supervised learning problem: applications in which the training data comprises examples of the input vector along with their correponding target vectors
      • Classification: the aim is to assign each input vector to one of a finite number od discrete categories
      • Regression: the desired output consists of one or more continuous variables
    • Unsupervised learning problem: the training data consist of a set of input vectors without any corresponding target values
      • Clustering: to discover groups of similar examples within the data
      • Density estimation: to determine the distribution of data within the input space
      • Dimension reduction: to project the data from high-dimensional space down to low dimension
    • Reinforce learning: the problrm of finding suitable actions to take in a given situation in order to maximize a reward. Here the learning algorithm is not given examples of optimal output, in contrast to supervised learning, but must discover them by a process of trails and errors
  • 相关阅读:
    SDUT OJ 河床
    BZOJ 1500: [NOI2005]维修数列( splay )
    BZOJ 2049: [Sdoi2008]Cave 洞穴勘测( LCT )
    BZOJ 3401: [Usaco2009 Mar]Look Up 仰望( 单调栈 )
    BZOJ 1552: [Cerc2007]robotic sort( splay )
    BZOJ 1251: 序列终结者( splay )
    BZOJ 1576: [Usaco2009 Jan]安全路经Travel( 树链剖分 )
    BZOJ 3408: [Usaco2009 Oct]Heat Wave 热浪( 最短路 )
    BZOJ 3403: [Usaco2009 Open]Cow Line 直线上的牛( deque )
    BZOJ 3407: [Usaco2009 Oct]Bessie's Weight Problem 贝茜的体重问题( dp )
  • 原文地址:https://www.cnblogs.com/Xiaoyan-Li/p/5784659.html
Copyright © 2011-2022 走看看