CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 文档资料 搜索资源 - 梯度

搜索资源列表

  1. 神经网络极速学习方法研究

    0下载:
  2. 单隐藏层前馈神经网络(Single-hidden Layer Feedforward Neural Network, SLFN)已经在模式识别、自动控制及数据挖掘等领域取得了广泛的应用,但传统学习方法的速度远远不能满足实际的需要,成为制约其发展的主要瓶颈。产生这种情况的两个主要原因是:(1)传统的误差反向传播方法(back propagation,BP)主要基于梯度下降的思想,需要多次迭代;(2)网络的所有参数都需要在训练过程中迭代确定。因此算法的计算量和搜索空间很大。针对以上问题,借鉴ELM的
  3. 所属分类:报告论文

    • 发布日期:2014-08-22
    • 文件大小:2644992
    • 提供者:honghf@126.com
  1. tuxingVCPP

    0下载:
  2. 变形传递( Deformation Transfer )是将源网格的变形传递到目标网格上,使目标网格具有与源网格相似的变形。本文通过构造具有源网格的拓扑结构且与目标网格有相似的几何外形的中间网格,建立源网格与目标网格三角形之间的对应关系,对应的三角形具有相同的变形梯度,将源网格的变形传递到目标网格上。-Deformation transfer (Deformation Transfer) is the source of the grid will be passed to the target
  3. 所属分类:Development Research

    • 发布日期:2017-05-02
    • 文件大小:639049
    • 提供者:郭康
  1. Levenberg-Marquardt-Algorithm

    0下载:
  2. 求解非线性问题的一种算法,综合了梯度法和牛顿法的优点-An algorithm for solving nonlinear problem, taking advantages of gradient method and Newton method
  3. 所属分类:software engineering

    • 发布日期:2017-03-29
    • 文件大小:29765
    • 提供者:王雪
  1. chengxu

    0下载:
  2. 本程序是用简化梯度法进行电力系统最优潮流计算。-This procedure is the calculation of the optimal power flow of power system with simplified gradient method.
  3. 所属分类:Document

    • 发布日期:2017-04-13
    • 文件大小:1727
    • 提供者:李明慧
  1. matlab

    0下载:
  2. 里边包含了一个如何区分6和9的代码以及用最小距离法、梯度法以及K-NN方法对样本进行的分类代码-Inside contains an example of how to distinguish between 6 and 9, as well as the code with the minimum distance method, the gradient method and K-NN method for sample classification codes
  3. 所属分类:File Formats

    • 发布日期:2017-03-29
    • 文件大小:36283
    • 提供者:小杜
  1. 25292626

    0下载:
  2. 为了实现复杂环境下的人脸特征有效表达,提出一种改进的梯度方向直方图(HOG)人脸识别方法.首先以人脸图像网格作为采样窗口并在其上提取 HOG特征;然后将所有网格 HOG特征向量进行组合,实现整个人脸特 征表达;最后采用最近邻分类器进行识别.另外,比较了该方法与Gabor小波和局部二值模式(LBP)2种著名的人脸 局部特征表示方法的优劣.实验结果表明,在调优的 HOG参数下,在具有光照和时间环境等复杂变化的FERET人 脸库中,较少维数的 HOG特征比LBP特征有更好的表现,而且 HO
  3. 所属分类:Project Design

    • 发布日期:2017-05-07
    • 文件大小:1274996
    • 提供者:wang
  1. PAPER5

    0下载:
  2. 一种基于局部梯度比率特征度量SAR图像相似性的新方法-A new method for SAR image similarity measure based on local gradient ratio characteristic .pdf
  3. 所属分类:Communication

    • 发布日期:2017-05-10
    • 文件大小:2481990
    • 提供者:xiaowang
  1. fast-template-matching

    1下载:
  2. 本文提出一种基于图像边缘几何特征的快速模板匹配算法。算法利用边缘 点的位置和梯度方向作为匹配信息进行相似度计算。可以很好的避免因图像明 暗变化、光照不均匀、旋转所带来的影响,且对于部分遮挡的情况,亦可以得 到良好的匹配结果。为了得到边缘点坐标和梯度方向,本文根据曲面拟合原理, 通过平移变换,推导出精确梯度方向和亚像素边缘坐标的快速算法。既加快了 算法的处理速度,也是匹配算法高精度的前提保证。为了使匹配算法满足实时 性要求,主要采用阈值判断和图像金字塔算法的搜索策略。在阈值
  3. 所属分类:software engineering

    • 发布日期:2017-05-11
    • 文件大小:2213762
    • 提供者:liu
  1. duoyuanhanshuweifen

    1下载:
  2. 掌握用MATLAB计算多元函数偏导数和全微 分的方法,并掌握计算二元函数极值和条 件极值的方法。理解和掌握曲面的切平面 的作法。通过作图和观察,理解方向导数、 梯度和等高线的概念。-differential of multiple function
  3. 所属分类:Project Design

    • 发布日期:2017-05-07
    • 文件大小:1229192
    • 提供者:刘翀
  1. hweofh

    0下载:
  2. 计算梯度 grad = mat2gray(grad) 将梯度矩阵转换为灰度图像 level = graythresh(grad) 计算灰度阈值 BW = im2bw(grad,level) 用阈值分割梯度图像 subplot(2,4,2) imshow(BW) 显示分割后的图像即边缘图像 -S VKJSJK
  3. 所属分类:File Formats

    • 发布日期:2017-04-28
    • 文件大小:167093
    • 提供者:罗金雄
  1. lightstripeExtraction

    1下载:
  2. 基于梯度重心法的光条提取算法,实现光条中心的亚像素提取。-Extraction Method Based on Gradient focus light bar algorithms to achieve sub-pixel light stripe center extraction.
  3. 所属分类:software engineering

    • 发布日期:2017-05-31
    • 文件大小:13247534
    • 提供者:LiangBaoqiu
  1. jnb2009

    0下载:
  2. 计算图像的模糊度,注明算法jnb的论文,可以根据梯度计算图像的模糊度-just noticeable blur quality measure
  3. 所属分类:Development Research

    • 发布日期:2017-05-19
    • 文件大小:4785463
    • 提供者:hankun
  1. spectral-conjugate-gradient

    0下载:
  2. 本文提出了一个修正的谱共轭梯度算法,并用于图像恢复当中。-This paper proposes a modified spectral conjugate gradient algorithm, and used for image restoration.
  3. 所属分类:File Formats

    • 发布日期:2017-05-07
    • 文件大小:1086082
    • 提供者:hakunalife
  1. cd160

    1下载:
  2. 包含光伏电池模块、MPPT模块、BOOST模块、逆变模块,利用自然梯度算法,遗传算法无功优化。- PV modules contain, MPPT module, BOOST module, inverter module, Use of natural gradient algorithm, Genetic algorithm based reactive power optimization.
  3. 所属分类:software engineering

    • 发布日期:2017-12-11
    • 文件大小:5517
    • 提供者:薛卫
  1. yjdbt

    0下载:
  2. 包括随机梯度算法,相对梯度算法,MIT人工智能实验室的目标识别的源码,Matlab实现界面友好。- Including stochastic gradient algorithm, the relative gradient algorithm, MIT Artificial Intelligence Laboratory identification of the target source, Matlab to achieve user-friendly.
  3. 所属分类:software engineering

    • 发布日期:2017-12-14
    • 文件大小:5048
    • 提供者:李周喜
  1. idrqp

    0下载:
  2. 利用自然梯度算法,完整的图像处理课设,包含所有源代码,汽车图像,二维声子晶体FDTD方法计算禁带宽度的例子。- Use of natural gradient algorithm, Complete class-based image processing, contains all of the source code, auto image, Dimensional phononic crystals FDTD method calculation examples band gap.
  3. 所属分类:Software Testing

    • 发布日期:2017-12-13
    • 文件大小:4797
    • 提供者:李心
  1. in011

    0下载:
  2. 可以实现模式识别领域的数据的分类及回归,利用自然梯度算法,多姿态,多角度,有不同光照。- You can achieve data classification and regression pattern recognition, Use of natural gradient algorithm, Much posture, multi-angle, have different light.
  3. 所属分类:Software Testing

    • 发布日期:2017-12-16
    • 文件大小:4096
    • 提供者:贺荣平
  1. qqfrq

    0下载:
  2. 多机电力系统仿真及其潮流计算,包括随机梯度算法,相对梯度算法,信号处理中的旋转不变子空间法。- Multi-machine power system simulation and flow calculation, Including stochastic gradient algorithm, the relative gradient algorithm, Signal Processing ESPRIT method.
  3. 所属分类:Software Testing

    • 发布日期:2017-12-15
    • 文件大小:7168
    • 提供者:祝云阳
  1. at016

    0下载:
  2. 未来线路预测,分析误差,利用自然梯度算法,DSmT证据推理的组合公式计算函数。- Future line prediction, error analysis, Use of natural gradient algorithm, Combination formula DSmT evidence reasoning calculation function.
  3. 所属分类:Software Testing

    • 发布日期:2017-12-13
    • 文件大小:10690
    • 提供者:朱国
  1. hk282

    0下载:
  2. 毕业设计有用,包括随机梯度算法,相对梯度算法,是一种双隐层反向传播神经网络。- Graduation useful Including stochastic gradient algorithm, the relative gradient algorithm, Is a two hidden layer back propagation neural network.
  3. 所属分类:software engineering

    • 发布日期:2017-12-13
    • 文件大小:7258
    • 提供者:江开周
« 1 2 3 45 »
搜珍网 www.dssz.com