zoukankan      html  css  js  c++  java
  • Machine Learning 000

    Stanford Link

    Definition

    Arthur Samuel: Machine Learing is the field of study that gives the computer the ablility to learn with out being explicitly  programmed.

    Tom Mitchell: 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 task in T, as measured by P, improves with experience E.

    Taxonomy 

    • Supervised Learning 
    • Unsupervised Learning
    • Reinforcement Learning

    Supervised Learning

    • eg: Housing Price Prediction
      • Given: a dataset that contains n samples(x1, y1),...,(xn, yn), x is for square feet, y is for price
      • Task: if a residence has x square feet, predict its price?

               

    • Regression vs Classification
      • regression: if y ∈ R is a continuous variable, e.g., price prediction
      • classification: the label is a discrete variable,e.g., the task of predicting the types of residence
    • Supervised Learning in Computer Vision
      • Image Classification, x = raw pixels of the image, y = the main object
      • Object localization and detection, x = raw pixel of the  image, y = the bounding boxes
    • Supervised Learning in Natural Language Processing
      • Machine translation

    Unsupervised Learning

    • Dataset contains no labels: x1,...,xn
    • Goal(vaguely-posed): to find interesting structures in the data

    • Clustering

     Reinforcement Learning

    •  The algorithm can collect data interactively

     

    Other Tools/Toptics In This Course

    • Deep learning basics
    • Introduction to learning theory
      • Bias偏差 variance方差 tradeoff
      • Feature selection
      • ML advice
    • Broader aspects of ML
      • Robustness/fairness
  • 相关阅读:
    关于上网内容
    lua 学习笔记1
    庖丁解牛Linux基本系统组成分析
    使用163.com的Centos6 yum源,更新RHEL6系统
    安装FreeBSD 8.2
    虚拟机安装FreeBSD 8.2
    也谈苹果
    2011年国庆老家记录
    Common lisp 学习笔记
    JDBC | 第八章: JDBC常用数据库连接池c3p0,dbcp,durid,hikariCP,tomcatjdbc性能及区别
  • 原文地址:https://www.cnblogs.com/yuelien/p/12904026.html
Copyright © 2011-2022 走看看