自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(8)
  • 资源 (1)
  • 收藏
  • 关注

转载 R 语言 optim 使用

stats中的optim函数是解决优化问题的一个简易的方法。Univariate Optimizationf = function(x,a) (x-a)^2xmin = optimize(f,interval = c(0,1),a=1/3)xminGeneral Optimizationoptim函数包含了几种不同的算法。 算法的选择依赖于求解导数的难易程度,通常最好提供...

2018-06-11 15:55:40 21437

转载 Example:Nelder-Mead Method

                     The process continues and generates a sequence of triangles that converges down on thesolution point (3, 2) (see Figure 8.10). Table 8.6 gives the function values at vertices of t...

2018-06-11 11:03:06 1250

转载 Nelder-Mead Method 有例子的

http://www.jasoncantarella.com/downloads/NelderMeadProof.pdf   A simplex method for  finding a local minimum of a function of several variables  has  been devised by Nelder and Mead. For ...

2018-06-11 07:46:11 3094 1

转载 The Nelder-Mead Algorithm in Two Dimensions

http://people.duke.edu/~hpgavin/cee201/Nelder-Mead-2D.pdfSteps for one iteration of the Nelder-Mead Algorithm1. Sort the vertices such that f(u) < f(v) < f(w). Point u is the best point, point v...

2018-06-09 23:58:30 256

转载 Nelder–Mead method

is a commonly applied numerical method used to find the minimum or maximum of an objective function in a multidimensional spaceapplied to nonlinear optimization problems for which derivatives may not ...

2018-06-07 23:47:53 1931

转载 牛顿迭代法

目前接触到的牛顿迭代法主要应用于两个方面:(1)方程求根问题(2)最优化问题。1、求解方程。并不是所有的方程都有求根公式,或者求根公式很复杂,导致求解困难。利用牛顿法,可以迭代求解。原理是利用泰勒公式,在x0处展开,且展开到一阶,即f(x) = f(x0)+(x-x0)f'(x0)求解方程f(x)=0,即f(x0)+(x-x0)*f'(x0)=0,求解x = x1=x0-f(x0)/f'(x0),...

2018-06-07 21:31:35 4357

转载 入门 | 初学机器学习:直观解读KL散度的数学概念

代码:https://github.com/thushv89/nlp_examples_thushv_dot_com/blob/master/kl_divergence.ipynb原文链接:http://www.thushv.com/machine-learning/light-on-math-machine-learning-intuitive-guide-to-understanding-kl...

2018-06-01 12:29:12 593

转载 换个角度思考“类”

作为一个思想实验,我们先假设Python没有类这个特性。如果我们要实现类似面向对象的功能,我们要怎么做?这篇文章假设你有Python的基础知识(函数、变量、列表、字典等)。如果你是完全的0基础,你可以先看下Python部落(python.freelycode.com)影音学堂中的入门课程。什么是类、对象和面向对象?简单地说,面向对象就是把数据看成一个实实在在的东西。比如,你可以让数据代表一个人,或...

2018-06-01 11:02:11 254

2005 Tableman Survival Analysis Using S.PDF

生存分析,有代码,例子,方便学习,偏简单。

2015-04-19

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除