原文:http://blog.csdn.net/abcjennifer/article/details/7700772本栏目(Machine learning)包括单参数的线性回归、多参数的线性回归、Octave Tutorial、Logistic Regression、Regularization...
分类:
其他好文 时间:
2015-12-05 12:48:27
阅读次数:
151
在线性拟合的基础上,我们实现logistic regression。如前所述,样本集是{x1,y1},{x2,y2},...,{xn,yn}[1]其中,xi=[1,xi,1,xi,2,xi,3,...,xi,k]T,且yi∈(0,1)。注意,这里对yi有值上的要求,必须如此,如果值不再这个区间,要以...
分类:
其他好文 时间:
2015-12-03 02:13:07
阅读次数:
251
实现线性拟合我们用python2.7实现上一篇的推导结果。请先安装python matplotlib包和numpy包。具体代码如下:#!/usr/bin/env python #! -*- coding:utf-8 -*-import matplotlib.pyplot as pltfrom num...
分类:
其他好文 时间:
2015-12-03 02:11:35
阅读次数:
175
首先PO上主要Python代码(2.7), 这个代码在Deep Learning上可以找到. 1 # allocate symbolic variables for the data 2 index = T.lscalar() # index to a [mini]batch 3 ...
分类:
编程语言 时间:
2015-12-03 00:46:36
阅读次数:
439
Theano– CPU/GPU symbolic expression compiler in python (from MILA lab at University of Montreal)Torch– provides a Matlab-like environment for state-of...
分类:
其他好文 时间:
2015-11-30 22:11:29
阅读次数:
219
可以用两种方式来看神经网络,一种就是层的集合,也就是层组成的数组,另一种是神经元的集合,也就是神经元组成的Graph。 基于神经元的实现方式中,需要定义两个类 Neuron, Weight Neuron类的实例相当于是vertex,Weight组成的链表相当于是邻接表和逆邻接表。 基于层的...
分类:
Web程序 时间:
2015-11-25 23:28:07
阅读次数:
243
Classification is one of the major problems that we solve while working on standard business problemsacross industries. In this article we’ll be discu...
分类:
其他好文 时间:
2015-11-24 21:14:32
阅读次数:
431
This is the 2nd part of the series. Read the first part here:Logistic Regression Vs Decision Trees Vs SVM: Part IIn this part we’ll discuss how to cho...
分类:
其他好文 时间:
2015-11-24 21:09:23
阅读次数:
302
Linear Regression with One VariableModel RepresentationRecall that in *regression problems*, we are taking input variables and trying to map the outpu...
分类:
其他好文 时间:
2015-11-18 02:02:18
阅读次数:
198
http://www.cnblogs.com/itech/archive/2009/04/10/1433052.html1.Linux链接概念Linux链接分两种,一种被称为硬链接(Hard Link),另一种被称为符号链接(Symbolic Link)。默认情况下,ln命令产生硬链接。【硬连接】硬...
分类:
系统相关 时间:
2015-11-09 23:52:40
阅读次数:
262