数据挖掘
guo_caixing
这个作者很懒,什么都没留下…
展开
-
Apriori代码 Python
""" # Python 2.7 # Filename: apriori.py # Author: llhthinker # Email: hangliu56[AT]gmail[DOT]com # Blog: http://www.cnblogs.com/llhthinker/p/6719779.html # Date: 2017-04-16 """ def load_data_set():转载 2018-01-08 16:58:56 · 898 阅读 · 0 评论 -
Apriori代码
from numpy import *def loadDataSet():#简单的测试数据集 return [[1, 3, 4], [2, 3, 5], [1, 2, 3, 5], [2, 5]]def createC1(dataSet): C1 = [] for transaction in dataSet: for it转载 2018-01-08 17:41:06 · 590 阅读 · 0 评论 -
PSO-BP算法
本文在作者原文的基础上增加了惯性动量来更新粒子速度与位置,且w采用线性递减方式变化。clear;clc; p = 0 : 0.01 : 2;%样本输入t = sin(pi * p);%样本输出n = 3; %隐含层神经元个数net = newff(p,t, n, {'tansig','purelin'}, 'trainlm'); swarmCount = 20; %粒子数swarmLeng...转载 2018-04-16 22:27:06 · 12978 阅读 · 6 评论