登录
首页 » Others » 模糊综合评价matlab程序

模糊综合评价matlab程序

于 2020-12-07 发布
0 280
下载积分: 1 下载次数: 4

代码说明:

模糊综合评价的一个实际例子,附有malab语言源程序代码

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • weiziman数据库上行为识别代码实现
    不错的weiziman数据库上的动作识别程序,程序清晰,分三步,提取特征,特征降维,交叉验证。分别运行着三步即可实现最终生成识别率的混淆矩阵
    2020-12-01下载
    积分:1
  • 稀疏自码深度学习的Matlab实现
    稀疏自编码深度学习的Matlab实现,sparse Auto coding,Matlab codetrain, m/7% CS294A/CS294W Programming Assignment Starter CodeInstructions%%%This file contains code that helps you get started ontheprogramming assignment. You will need to complete thecode in sampleIMAgEsml sparseAutoencoder Cost m and computeNumericalGradientml For the purpose of completing the assignment, you domot need tochange the code in this filecurer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencodtrain.m∥%%========%6% STEP 0: Here we provide the relevant parameters valuesthat willl allow your sparse autoencoder to get good filters; youdo not need to9 change the parameters belowvisibleSize =8*8; number of input unitshiddensize 25number of hidden unitssparsity Param =0.01; desired average activation ofthe hidden units7 (This was denoted by the greek alpharho, which looks like a lower-case pcurer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod4/57train.,m∥in the lecture notes)1 ambda=0.0001%o weight decay parameterbeta 3%o weight of sparsity penalty term%%==:79 STEP 1: Implement sampleIMAGESAfter implementing sampleIMAGES, the display_networkcommand shouldfo display a random sample of 200 patches from the datasetpatches sampleIMAgES;display_network(patches(:, randi(size(patches, 2), 204, 1)), 8)%为产生一个204维的列向量,每一维的值为0~10000curer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod5/57train.m/v%中的随机数,说明是随机取204个 patch来显示%o Obtain random parameters thetatheta= initializeParameters ( hiddenSize, visibleSize)%%=============三三三三====================================97 STEP 2: Implement sparseAutoencoder CostYou can implement all of the components (squared errorcost, weight decay termsparsity penalty) in the cost function at once, butit may be easier to do%o it step-by-step and run gradient checking (see STEP3 after each stepWecurer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod6/57train. m vb suggest implementing the sparseAutoencoder Cost functionusing the following steps(a) Implement forward propagation in your neural networland implement the%squared error term of the cost function. Implementbackpropagation tocompute the derivatives. Then (using lambda=beta=(run gradient Checking%to verify that the calculations corresponding tothe squared error costterm are correctcurer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod7/57train. m vl(b) Add in the weight decay term (in both the cost funcand the derivativecalculations), then re-run Gradient Checking toverify correctnessl (c) Add in the sparsity penalty term, then re-run gradiChecking toverify correctnessFeel free to change the training settings when debuggingyour%o code. (For example, reducing the training set sizecurer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod8/57train m vl/number of hidden units may make your code run fasterand setting betaand/or lambda to zero may be helpful for debuggingHowever, in yourfinal submission of the visualized weights, please useparameters web gave in Step 0 abovecoS七grad]sparseAutoencoderCost(theta, visibleSize,hiddensize, lambda,sparsityParam, beta,patches)二〓二二二二二二二〓二〓二〓二〓=二====〓=curer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod9/57train.m vlll96% STeP 3: Gradient CheckingHint: If you are debugging your code, performing gradienchecking on smaller modelsand smaller training sets (e. g, using only 10 trainingexamples and 1-2 hiddenunits) may speed things upl First, lets make sure your numerical gradient computationis correct for a%o simple function. After you have implemented computeNumerun the followingcheckNumericalGradientocurer:YiBinYUyuyibintony@163.com,WuYiUniversityDeep Learning, MATLAB Code for Sparse Autoencode10/57
    2020-12-05下载
    积分:1
  • 全国地图json(到市级)
    全国地图json(到市级),可以用于echars里面等
    2020-12-08下载
    积分:1
  • 光线追踪与光子映射
    纯C++实现的光线追踪和光子映射算法光线追踪包含蒙特卡罗算法光子映射基于光线追踪,第一层漫反射使用光线追踪计算,焦散、二次漫反射等使用光子映射估算
    2021-05-06下载
    积分:1
  • 伺服控制simulink模型
    可以运行的伺服控制simulink模型,大家有兴趣的可以下载运行一下
    2020-11-28下载
    积分:1
  • matlab三维网格化图像源码
    这是用matlab编写的一款用于实现点云的网格化连接的源码,可以实现物体三维框架的搭建,效果很不错。
    2020-12-01下载
    积分:1
  • Modbus Server模拟序(源代码)
    【实例简介】自己写的modbus server端模拟程序。 传输方式选用的是RTU模式。 主要功能如下 1:设定监听端口号 2:modbus帧收发监视,显示到对话框上 3:modbus寄存器模拟,包括寄存器值查看,值修改等功能。 4:统计功能,统计收到的正确帧数和错误帧数。 5:各功能码个数统计功能,统计各功能码帧数,并用VC 的ACtiveX控件 mschart显示。 显示方式可以选择柱状图或者饼状图。 自己写的并且在VC++6编译通过。欢迎大家交流学习
    2021-11-07 00:39:25下载
    积分:1
  • 电影推荐系统
    Graduation Design Project --- 电影推荐系统系统实现工具1.pycharm2.python3.6+django1.113.mysql4.jquery+css+html5如何使用首先将项目克隆到本地,用pycharm打开,将用到的csv文件导入mysql数据表中,配置好数据库;注意数据库相关代码可能都要进行修改以符合实际情况;代码完成后要进行migration,最后python manage.py runserver就能在浏览器中打开系统流程用户登录系统,对电影进行评分,查看自己已评价电影,查看推荐结果(两种)
    2020-06-29下载
    积分:1
  • 图像二维傅里叶变换的物理意义
    二维傅里叶变换的物理意义 数字图像处理 终于明白二维傅里叶变换是什么意义了
    2020-11-29下载
    积分:1
  • BLUETOOL1.4.3.9
    Broadcom的程序下载工具,也可进行RF测试等操作,非常好用,请注意,在安装此工具之前,要先安装ActivePerl-5.8.4.810-MSWin32-x86;
    2021-05-06下载
    积分:1
  • 696516资源总数
  • 106913会员总数
  • 8今日下载