Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - NN
Search - NN - List
DL : 0
一个运用遗传算法来训练神经网络的程序-use of a genetic algorithm to train the neural network process
Update : 2024-05-15 Size : 8192 Publisher : 陈雷

DL : 0
用模拟退火算法求解TSP问题-simulated annealing algorithm for TSP
Update : 2024-05-15 Size : 2048 Publisher : 吴晟祖

DL : 0
利用最大匹配法进行汉语句子的分词 最大匹配算法是最常用的分词算法,简单实用正确率可达到80%以上-the maximum matching method for the Chinese Sentence Word maximum matching algorithm is the most commonly used word segmentation algorithm, simple and practical accuracy rate can reach more than 80%
Update : 2024-05-15 Size : 73728 Publisher : 廖剑

DL : 0
这是一个我自己编写的JAVA程序,可以运行的。思想是将KMEANS和神经网络结合起来实现模式的分类。-This is a Java program writen by meself which can be run.The chief concept is to combine KMEANS and NN to achieve classification of pattens.
Update : 2024-05-15 Size : 19456 Publisher : 丽云

DL : 0
一个关于神经网络遗传算法的源程序,对于初学者肯定有帮助-A source code about NN(nerve network),it is helpful for beginners
Update : 2024-05-15 Size : 4096 Publisher : 叶勇

DL : 0
介绍一种用VC实现的字符识别的方法,采用的是神经网络的算法-Introduce a character recognition method used VC, this method adopt NN Arithmetic.
Update : 2024-05-15 Size : 1024 Publisher : 刘艳

DL : 0
BP网络,解决人工智能中BP网络问题,是人工智能的大作业-BP Net source code for AI
Update : 2024-05-15 Size : 17408 Publisher : 韩逍

字符文本识别的神经网络程序,采用BP算法,能够适时输出错误便于察看-The NN program of Character text recognition adopts BP Arithmetic, it could output run error in time and easy to be descried.
Update : 2024-05-15 Size : 12288 Publisher : 天天向上

DL : 0
bp神经网络源代码,vc环境开发,神经网络开发工具-source code of bp neural network developed by VC,developing tool of the neural network developing
Update : 2024-05-15 Size : 3538944 Publisher :

算法介绍 矩阵求逆在程序中很常见,主要应用于求Billboard矩阵。按照定义的计算方法乘法运算,严重影响了性能。在需要大量Billboard矩阵运算时,矩阵求逆的优化能极大提高性能。这里要介绍的矩阵求逆算法称为全选主元高斯-约旦法。 高斯-约旦法(全选主元)求逆的步骤如下: 首先,对于 k 从 0 到 n - 1 作如下几步: 从第 k 行、第 k 列开始的右下角子阵中选取绝对值最大的元素,并记住次元素所在的行号和列号,在通过行交换和列交换将它交换到主元素位置上。这一步称为全选主元。 m(k, k) = 1 / m(k, k) m(k, j) = m(k, j) * m(k, k),j = 0, 1, ..., n-1;j != k m(i, j) = m(i, j) - m(i, k) * m(k, j),i, j = 0, 1, ..., n-1;i, j != k m(i, k) = -m(i, k) * m(k, k),i = 0, 1, ..., n-1;i != k 最后,根据在全选主元过程中所记录的行、列交换的信息进行恢复,恢复的原则如下:在全选主元过程中,先交换的行(列)后进行恢复;原来的行(列)交换用列(行)交换来恢复。-algorithm introduced in the matrix inversion process is very common, which are mainly used for Billboard matrix. In accordance with the definition of the method of calculating multiplication, seriously affecting the performance. The need for a large number of Billboard matrix operations, matrix inversion optimization can significantly improve performance. Here we introduce the matrix inversion algorithm called full-elected PCA Gauss-Jordan and France. Gauss-Jordan and France (all elected PCA) inversion of the following steps : First, for k from 0 to n-1 for the following steps : from the first trip k, k started out the bottom right corner Subarray largest absolute selected elements, and element remember meeting the line and out, the adoption OK exchange and the exchange out of its exchange
Update : 2024-05-15 Size : 3072 Publisher : 刘亮

三维空间中的分形插值算法 ① 在X-Y平面上绘制一个n×n的正方形网格,并对4个角点在Z方向上分别设置初始高度ha,hb,hc,hd,得到A,B,C,D这4点(如图10.3所示)。 ② 根据式hm=(ha+hb+hc+hd)/4+△,计算正方形网格中点的高度hm,其中△为一随机量,从而得到M点。 ③ 根据角点和中点以及虚拟点,计算边中点的高度,即 he=(ha+hb+hm+0)/4+△ hf=(hb+hc+hm+0)/4+△ hg=(hc+hd+hm+0)/4+△ hh=(hd+ha+hm+0)/4+△ 其中,△为一随机量,从而得到E,F,G,H这4点。 ④ 再根据E,B,F,M4点的高度计算小正方形EBFM中点的高度,类似地计算小正方形MFCG,HMGD,AEMH中点的高度,即 he’=(ha+hb+hm+he)/4+△1 hf ’=(hb+hc+hm+hf)/4+△1 hg’=(hc+hd+hm+hg)/4+△1 hh’=(hd+ha+hm+hh)/4+△1 以及这些正方形边中点的高度。 ⑤ 递归步骤③和步骤④使正方形网格逐步细化,直至达到预期递归深度,然后连接每个正方形网格点。 -Three-dimensional space fractal interpolation algorithm
Update : 2024-05-15 Size : 2048 Publisher : 李文选

二维空间中的分形插值算法 ① 在平面上划分正方形网络n×n,随机给A,B,C,D这4个角点的颜色。 ② 根据4个角点的颜色值的平均值,产生中点M的颜色。 ③ 根据A,B,M点和网格外一虚拟点(颜色值为0)求平均,得到边中点E的颜色;根据B,C,M点和网格外一虚拟点(颜色值为0)求平均,得到边中点F的颜色;根据C,D,M点和网格外一虚拟点(颜色值为0)求平均,得到边中点G的颜色;根据A,D,M点和网格外一虚拟点(颜色值为0)求平均,得到边中点H的颜色。 ④ 根据小正方形EBFM的4角点颜色的平均值,求出小正方形中点以及小正方形的边中点的颜色;然后再沿用上述规则计算小正方形MFCG的中点及边中点的颜色,以此类推,计算小正方形HMGD,AEMH的中点和边中点的颜色。 递归步骤④,使其正方形网格不断细化,直至达到预期的递归深度 -Two-dimensional space fractal interpolation algorithm
Update : 2024-05-15 Size : 2048 Publisher : 李文选

DL : 0
用神经元模拟磁旋,用连接权模拟磁场中磁旋的相互作用,用各神经元的激活、抑制这两种状态,模拟磁旋的上下两个方向。 构成一个具有记忆功能的NN,并用计算能量函数,来评价和指导整个网络的记忆功能。 -using simulated neurons magnetic spins, and connecting with the right analog magnetic rotary magnetic field interaction with the activation of neurons, contain two states, analog magnetic rotary direction of the next two. Constitute a memory function of NN, and the computational energy function, and guidance to evaluate the entire network of memory function.
Update : 2024-05-15 Size : 64512 Publisher : fuyu

DL : 0
基于神经网络的PID控制不是用神经网络来整定PID的参数,而是用神经网络直接作为控制器,通过训练神经网络的权系数间接地调整PID参数。-based on neural network PID control is not using neural networks to PID parameters, Rather, as a neural network controller directly, through the training of the neural network weights indirectly PID parameters to adjust.
Update : 2024-05-15 Size : 69632 Publisher : 戚伟

DL : 0
本电影程序,经过作者的完善和修改,修复了全部功能,并对数据库进行了防下载处理。现提供给大家使用。 系统功能简介: 1,本电影系统管理简单,管理员很方便管理,用户只要点击广告即可观看电影; 2,本系统采用ACCESS数据,数据库已经过防下载处理,即使数据库路径被别人知晓也无法下载; 3,后加台管理员密码采用MD5加密; 。。。。 使用前为了数据安全请修改数据库地址,数据为地址为:../data/movie_login.asp,并修改数据库连接文件Movie_Conn.asp和 Aadmin/Movie_Conn.asp文件-the film procedures are followed, the author of improvement and change, the restoration of full functionality, the database also download anti-processing. We are available to use. System profiles : one, the film system management simple and convenient management administrator, users can click on the ads to watch a movie; 2, the system uses ACCESS data the database has been downloaded- processing, database path even if others are not known to have downloaded; 3. added Taiwan administrator password used MD5 encryption; . . . . Prior to the use of data security Please modify the database, address, data address : ../data/movie_login.asp. Database Connection and modify documents Movie_Conn.asp and Aadmin/Movie_Co nn.asp documents
Update : 2024-05-15 Size : 623616 Publisher :

DL : 0
用NN算法对于急病类型进行分类实例 NN For Classification-NN algorithm used for the mistress type NN For example Classification Classification
Update : 2024-05-15 Size : 2048 Publisher : zy

DL : 0
是支持向量机的算法,很好的一个软件包。特别有用-support vector machine algorithm, a very good package. Particularly useful
Update : 2024-05-15 Size : 419840 Publisher : 吴佳鑫

DL : 0
遗传bp神经网络在pid控制器中的应用,多多指教-genetic bp pid neural network controller in the application of the exhibitions! !
Update : 2024-05-15 Size : 84992 Publisher : angel

DL : 0
神经网络经典源程序,有创新,欢迎下载 -source classical neural networks, innovation, welcome to download
Update : 2024-05-15 Size : 2048 Publisher :

DL : 0
一个高人的VC实现NN的程序。很不错。先运行Matrixbase.dsw,again arithmetic.dsw, next nnbp.dsw,final neuralNetWork.dsw.-an expert in VC NN procedures. Very good. First running Matrixbase.dsw, again arithmetic.dsw. next nnbp.dsw, final neuralNetWork.dsw.
Update : 2024-05-15 Size : 9678848 Publisher : 尹明
« 1 2 ... 6 7 8 9 10 1112 13 14 15 16 ... 49 »
DSSZ is the largest source code store in internet!
Contact us :
1999-2046 DSSZ All Rights Reserved.