美文网首页
模型表示

模型表示

作者: 刷刷人工智能 | 来源:发表于2016-12-22 16:32 被阅读3次

Model Representation

To establish notation for future use, we’ll usex(i)to denote the “input” variables (living area in this example), also called input features, andy(i)to denote the “output” or target variable that we are trying to predict (price). A pair(x(i),y(i))is called a training example, and the dataset that we’ll be using to learn—a list of m training examples(x(i),y(i));i=1,...,m—is called a training set. Note that the superscript “(i)” in the notation is simply an index into the training set, and has nothing to do with exponentiation. We will also use X to denote the space of input values, and Y to denote the space of output values. In this example, X = Y = ℝ.

To describe the supervised learning problem slightly more formally, our goal is, given a training set, to learn a function h : X → Y so that h(x) is a “good” predictor for the corresponding value of y. For historical reasons, this function h is called a hypothesis. Seen pictorially, the process is therefore like this:

When the target variable that we’re trying to predict is continuous, such as in our housing example, we call the learning problem a regression problem. When y can take on only a small number of discrete values (such as if, given the living area, we wanted to predict if a dwelling is a house or an apartment, say), we call it a classification problem.

相关文章

  • 模型表示

    Model Representation To establish notation for future use...

  • MVC、MVP和MVVM之间的区别

    区别:MVC表示“模型-视图-控制器”,MVP表示“模型-视图-演示者”,MVVM表示“模型-视图-视图模型”;M...

  • per-courseDOM介绍

    DOM 文档对象模型 D 表示文档,DOM的物质基础O 表示对象,DOM的思想基础M 表示模型,DOM的方法基础...

  • (22)文本表示模型

    (1)TF-IDF模型 属于词袋模型,TF-IDF(t,d)= TF(t,d)*IDF(t) TF(t,d)表示...

  • 模型表示(Model representation)

    模仿神经元: x0称为偏差单位或者偏差神经元(bias unit or bias neuron),它总是等于1;θ...

  • 模型表示(Model representation)

    监督学习:回归、分类问题;数据集(训练集) m:训练样本的数目;x:特征向量(输入的特征);y:输...

  • 机器学习笔记4-吴恩达课程-Linear regression

    Model representation 模型表示 本课主要介绍了监督学习的模型表示,以回归问题作为例子介绍了训练...

  • 贝叶斯网络

    一、什么是概率图模型? 概率图模型(PGM)是用图来表示变量概率依赖关系的理论,表示与模型有关的变量的联合概率分布...

  • 贝叶斯网络

    一、什么是概率图模型? 概率图模型(PGM)是用图来表示变量概率依赖关系的理论,表示与模型有关的变量的联合概率分布...

  • 2.1-单变量线性回归-模型表示

    二、模型和代价函数(Model and Cost Function) 2.1 模型表示(Model Represe...

网友评论

      本文标题:模型表示

      本文链接:https://www.haomeiwen.com/subject/rohhvttx.html