博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
p3-Regression-Case Study
阅读量:3905 次
发布时间:2019-05-23

本文共 780 字,大约阅读时间需要 2 分钟。

Regression:

  • Stock Market Forecast
  • Self-driving Car
  • Recommendation
  • Estimating the Combat Power of a pokemon after evolution

Function:

f( pokemon ) = CP after evolution

Method:

Step1:Model
Linear model:f1: y = b + w * xcp (w and b are parameters,xcp is CP before evolution)【w is weight, b is bias】
Another Model:y = b + w1 * xcp + w2 * xcp^2
Redesign the model:different species have different function(引入seg函数)
Step2:Goodness of Function
Training Data
Loss function L:L(f) = L(w,b)【how bad a funtion is(此处为方差)】
Regularization:
Step3:Best Funtion
A set of function -> Goodness of function <- Training Data
Gradient Descent:偏微分

Overfitting:

A more complex model yields lower error on training data.
A more complex model does not always lead to better performance on testing data.

转载地址:http://abqen.baihongyu.com/

你可能感兴趣的文章
bash日期格式转换(去掉无意义的零)的可选方法
查看>>
常用计算机端口解释
查看>>
转载)保护眼睛,把电脑窗口背景设置成绿颜色
查看>>
FireFox 的强大Web开发插件
查看>>
MIME相关
查看>>
WAP1.0与WAP2.0页面的DTD
查看>>
如何学好C++语言
查看>>
包的设计原则
查看>>
回顾时光 详解HTML的发展史
查看>>
MinGW与Cygwin
查看>>
用WEB标准进行开发
查看>>
[译]关于Android图形系统的一些事实真相
查看>>
J2ME下的Zlib/Gzip/Zip压缩相关
查看>>
Cygwin 的安装配置
查看>>
Cygwin基本命令的使用方法
查看>>
Java本地接口(JNI)编程指南和规范(第二章)
查看>>
有关使用xsl输出csv格式文档的实践小结
查看>>
在Ubuntu 12.04 为 Eclipse 添加快速启动项
查看>>
GCC强大背后
查看>>
Android x86模拟器Intel Atom x86 System Image配置与使用方法
查看>>