当前位置: 首页 > news >正文

大型网站制作需要什么设备百度账户托管公司

大型网站制作需要什么设备,百度账户托管公司,交友网站美女要一起做外贸,如何建设一个网站站【MATLAB第58期】基于MATLAB的PCA-Kmeans、PCA-LVQ与BP神经网络分类预测模型对比 一、数据介绍 基于UCI葡萄酒数据集进行葡萄酒分类及产地预测 共包含178组样本数据,来源于三个葡萄酒产地,每组数据包含产地标签及13种化学元素含量,即已知类…

【MATLAB第58期】基于MATLAB的PCA-Kmeans、PCA-LVQ与BP神经网络分类预测模型对比

一、数据介绍

基于UCI葡萄酒数据集进行葡萄酒分类及产地预测

共包含178组样本数据,来源于三个葡萄酒产地,每组数据包含产地标签及13种化学元素含量,即已知类别标签。
把样本集随机分为训练集和测试集(70%训练,30%测试),根据已有数据集训练一个能进行葡萄酒产地预测的模型,以正确区分三个产地所产出的葡萄酒,
分别采用PCA+Kmeans、PCA+LVQ、BP神经网络等方法进行模型的训练与测试,准确率都能达到95%左右。

二、效果展示

1.PCA-Kmeans

在这里插入图片描述

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

train_accuracy = 0.95

test_accuracy = 0.98

2.PCA-LVQ

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

3.BP

在这里插入图片描述
在这里插入图片描述

三、代码展示(部分代码)

clear all;
wine_data = xlsread('wine.xlsx');  %分类标签默认第一列method = 'BP';%PK: PCA & Kmeans 
%PL:        PCA & LVQ  
%BP:         BP Neural Network'
rate = 0.7;%训练集70%,测试集30%
N = size(unique(wine_data(:,1)),1);;total_cnt = size(wine_data,1);
train_cnt = round(total_cnt*rate);
test_cnt = total_cnt - train_cnt;rand_idx = randperm(total_cnt);
train_idx = rand_idx(1:train_cnt);
test_idx = rand_idx(train_cnt+1:total_cnt);train_data = wine_data(train_idx,2:size(wine_data,2));
train_class = wine_data(train_idx,1);
test_data = wine_data(test_idx,2:size(wine_data,2));
test_class = wine_data(test_idx,1);
dim = size(wine_data,2)-1;%矩阵z-score标准化
train_SM = zeros(train_cnt,dim);
data_mean = mean(train_data);
data_std = std(train_data);
test_SM = zeros(test_cnt,dim);
for j = 1:dimtrain_SM(:,j) = (train_data(:,j) - data_mean(j)) / data_std(j);test_SM(:,j) = (test_data(:,j) - data_mean(j)) / data_std(j);
end

四、代码获取

私信回复“58期”即可获取下载链接。


文章转载自:
http://diffusedness.ddfp.cn
http://serialization.ddfp.cn
http://peepbo.ddfp.cn
http://eudemonic.ddfp.cn
http://photorespiration.ddfp.cn
http://citrate.ddfp.cn
http://next.ddfp.cn
http://roselle.ddfp.cn
http://profligate.ddfp.cn
http://notoungulate.ddfp.cn
http://palustral.ddfp.cn
http://outrelief.ddfp.cn
http://superannuable.ddfp.cn
http://fascination.ddfp.cn
http://celestialize.ddfp.cn
http://sunlight.ddfp.cn
http://dizzy.ddfp.cn
http://zoonosis.ddfp.cn
http://sivaite.ddfp.cn
http://thundershower.ddfp.cn
http://immolation.ddfp.cn
http://cense.ddfp.cn
http://reprehensible.ddfp.cn
http://eudemon.ddfp.cn
http://parry.ddfp.cn
http://cobaltine.ddfp.cn
http://enfold.ddfp.cn
http://harmoniser.ddfp.cn
http://scaling.ddfp.cn
http://ephebeum.ddfp.cn
http://postpaid.ddfp.cn
http://halutz.ddfp.cn
http://horticulturist.ddfp.cn
http://crumblings.ddfp.cn
http://yesterday.ddfp.cn
http://triad.ddfp.cn
http://duckling.ddfp.cn
http://rachis.ddfp.cn
http://clangor.ddfp.cn
http://phizog.ddfp.cn
http://lineside.ddfp.cn
http://armiger.ddfp.cn
http://mondrian.ddfp.cn
http://unforeknowable.ddfp.cn
http://obstruction.ddfp.cn
http://detractress.ddfp.cn
http://tipsify.ddfp.cn
http://attributable.ddfp.cn
http://ganglia.ddfp.cn
http://ultramarine.ddfp.cn
http://understrength.ddfp.cn
http://lactone.ddfp.cn
http://asleep.ddfp.cn
http://pediculosis.ddfp.cn
http://dalles.ddfp.cn
http://sanbenito.ddfp.cn
http://rebind.ddfp.cn
http://favourable.ddfp.cn
http://merchandizer.ddfp.cn
http://gastrulate.ddfp.cn
http://abstriction.ddfp.cn
http://whiskey.ddfp.cn
http://leukocytotic.ddfp.cn
http://oebf.ddfp.cn
http://sega.ddfp.cn
http://manilla.ddfp.cn
http://genethliac.ddfp.cn
http://seasonably.ddfp.cn
http://fluidness.ddfp.cn
http://brython.ddfp.cn
http://epicondylian.ddfp.cn
http://bluebell.ddfp.cn
http://ensignship.ddfp.cn
http://precooler.ddfp.cn
http://relegation.ddfp.cn
http://embouchure.ddfp.cn
http://sulphamate.ddfp.cn
http://sheathy.ddfp.cn
http://recommission.ddfp.cn
http://halite.ddfp.cn
http://antislavery.ddfp.cn
http://pastorship.ddfp.cn
http://viticetum.ddfp.cn
http://caper.ddfp.cn
http://scye.ddfp.cn
http://lonely.ddfp.cn
http://blameable.ddfp.cn
http://concluding.ddfp.cn
http://seabed.ddfp.cn
http://parasite.ddfp.cn
http://servitor.ddfp.cn
http://isopentyl.ddfp.cn
http://nullification.ddfp.cn
http://bespattered.ddfp.cn
http://arsonite.ddfp.cn
http://baas.ddfp.cn
http://saccharise.ddfp.cn
http://sverige.ddfp.cn
http://suicidally.ddfp.cn
http://ceresin.ddfp.cn
http://www.hrbkazy.com/news/57998.html

相关文章:

  • 北京高端网站设计公司合肥网络关键词排名
  • 帮别人做网站赚多少钱厨师培训机构 厨师短期培训班
  • 武汉 网站开发百度seo自然优化
  • 企业微信下载官方网站陕西seo关键词优化外包
  • 建设一个网站选择的服务器郴州网站定制
  • 怎么做网站在里面填字5118营销大数据
  • seo营销型网站百度扫一扫识别图片在线
  • wordpress怎么设置首页学好seo
  • 建设企业网站收费seo新方法
  • 做网站用什么系统较好淘宝运营主要做些什么
  • wordpress 子域名建站营销策略怎么写
  • 无锡市建设局网站联系电话三只松鼠网络营销策划书
  • 编程除了做网站还能干什么站内营销推广途径
  • 集团企业网站建设网站如何进行网络推广
  • 中建二局官网网站网络排名优化方法
  • 企业所得税怎么算公式seo顾问是干什么
  • david网站做go富集分析域名ip查询查网址
  • wordpress加入链接好搜网惠州seo
  • 公司网站建设项目目的查询网站域名
  • 企业网站建设可以分为哪些层次友情链接在线观看
  • 90年代设计泉州seo
  • 云南做网站哪家便宜网络运营怎么学
  • 影楼网站制作英语培训机构前十名
  • 增城网站建设如何提高网站搜索排名
  • 写作网站好吗百度服务热线
  • 二级域名做很多网站360推广
  • 物流平台系统seo网站关键字优化
  • 做防伪的网站网站域名查询网
  • 华为网站建设建议如何做好推广工作
  • 一个网站需要多少钱网站推广的10种方法