登录
首页 » Others » 完整的OA项目(SSH框架)

完整的OA项目(SSH框架)

于 2020-12-12 发布
0 234
下载积分: 1 下载次数: 1

代码说明:

基于SSH框架、MVC设计模式开发的这套OA系统 代码一应俱全

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

发表评论

0 个回复

  • 自适应滤波器原理(答案与代码)
    本书是自适应信号处理领域的一本经典教材。全书共17章,系统全面、深入浅出地讲述了自适应信号处理的基本理论与方法,充分反映了近年来该领域的新理论、新技术和新应用。内容包括:自适应LMS横向滤波器、自适应格型滤波器、自适应递归滤波器、频域和子带自适应滤波器、盲目适应滤波器、神经网络非线性自适应滤波器等及其在通信与信息系统中的应用。全书取材新颖、内容丰富、概念清析、阐述明了,适合于通信与电子信息类相关专业的高年级本科生、研究生、教师及工程技术人员阅读。
    2021-05-06下载
    积分: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
  • CDMA系统MATLAB仿真
    包含一个word文档和m文件!另外,对科技咨询感兴趣的,可以来我的博客,www.techfans.net,和我一起探讨
    2020-12-11下载
    积分:1
  • lowtran7中文说明书
    大气辐射传输计算机 LOWTRAN 7大致可分为三大块:(1)大气模式输入。包括大气温度、气压、密度的垂直廓线、水汽、臭氧、甲烷、一氧化碳和一氧化二氮的混合比垂直廓线及其它13种微量气体的垂直廓线,城乡大气气溶胶、雾、沙尘、火山灰、云、雨的廓线和辐射参量,如消光系数、吸收系数、非对称因子的光谱分布及地外太阳光谱。(2)探测几何路径、大气折射及吸收气体含量。(3)光谱透过率计算及大气太阳背景辐射计算(包括或不包括多次散射)。
    2020-12-03下载
    积分:1
  • 阿里音乐流行趋势预测大赛
    天池大赛第六名。这个赛题不是典型的分类、聚类问题,而是时间序列问题,这种时间序列问题,主要在于学习出周期性和趋势。为了达到学出周期性和趋势的目标,可以试用统计学中典型的时间序列模型如STL分解和ARIMA,这样的模型的优点是便捷,弱点是像个黑盒,不太便于添加更多特征。
    2020-12-09下载
    积分:1
  • 张正友相机标定(自己写calibratie函数,不用OpenCV库函数)
    由于导师要求自己编写calibrate函数,锻炼自己编写带啊能力和理解论文能力,上传至此,供大家学习交流,张正友相机标定(自己编写calibratie函数,不用OpenCV库函数)
    2020-12-08下载
    积分:1
  • KPCA核主成分分析法matlab算法
    KPCA核主成分分析法matlab算法,用于矩阵的特征提取
    2021-05-06下载
    积分:1
  • 基于Tsallis熵的图像分割方法
    熵阈值法是图像分割中的重要方法, 并在图像处理中得到了广泛的应用。针对香农熵阈值法因存在对数计算而导致计算量过大的问题,这里运用一种新的信息熵; 并用于图像分割的阈值选取,Tsallis熵及其灰度熵的分割方法不仅降低了计算复杂度,而且分割效果更好。
    2020-12-08下载
    积分:1
  • php+mysql失物招领系统
    实现简单的动态网站功能,登录,注册,删除,修改,查找,后台管理等。界面简介大方。内含详细说明。
    2020-12-04下载
    积分:1
  • 混合整数非线性规划
    混合整数非线性规划matlab代码,需要者请下吧~
    2020-11-28下载
    积分:1
  • 696516资源总数
  • 106611会员总数
  • 19今日下载