自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

jhlzlb的专栏

专注机器学习、数据挖掘、计算广告学

  • 博客(4)
  • 资源 (2)
  • 收藏
  • 关注

原创 naive bayes with python

#!/usr/bin/python from numpy import * import re from os import listdir def loadDataSet(): postingList = [['my' , 'dog' , 'has' , 'fea' , \ 'problems' , 'help', 'please' ], ['maybe' , 'not' , 't

2013-01-22 16:37:00 434

原创 decision_tree (ID3) with python

#!/usr/bin/python from math import log from numpy import * import operator import copy import pickle def createDataSet(): dataSet =[[1, 1, 'yes'], [1, 1, 'yes'], [1, 0, 'no'], [0, 1, 'no'],

2013-01-22 16:35:54 534

原创 KNN with python

#!/usr/bin/python """ Created on Jan 13 , 2013 Filename: kNN.py @author : libo """ from numpy import * from sys import argv from os import listdir #scritp , filename = argv def importData(): grou

2013-01-22 16:30:10 451

转载 聚类问题

http://blog.pluskid.org/?tag=clustering漫谈clustering 系列。 谱聚类综述:“A tutorial on spectral clustering"

2012-11-15 15:30:48 797

矩阵链乘MATRIX C/C++

矩阵链乘实验,实现矩阵链乘算法,n=23,24,25,…,28,矩阵大小为p0p1…pn,随机产生正整数,范围5-120

2008-12-06

LCS最大公共子序列问题 C/C++

LCS最大公共子序列问题 C/C++ 最大公共子序列,实现公共子序列算法。

2008-12-06

空空如也

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

TA关注的人

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