搜索资源列表
TIERRA
- 地球模拟器,最经典的人工生命模型,研究人工智能的必看。一般地说,生命都具有新陈代谢、复制和进化的能力。在自然界中,生物是由有限的食物供给和有限的生存空间约束的。在Tierra中,“生物”由一系列能够自我复制的机器代码或程序组成,它在计算机中的复制分别受到计算机的存储空间和CPU时间约束。能有效地占有内存空间和利用CPU时间的生物体,将具有更高的适应度,传递到下一代的机会就越大。 在Tierra中,计算机的RAM(随机访问存储器)中有一块专门的空间,这个空间中放置了一个“祖先有机体”,该祖先有
veelionAI
- 人工智能中经典算法-宽度搜索和启发是搜索(A*算法)在VC环境下的实现代码,对于学习人工智能有很多帮助- In the artificial intelligence the classical algorithm - width search and the inspiration are the search (the A* algorithm) under the VC environment realization code, has regarding the study arti
GP_VC
- 遗传规划算法的VC程序实现 智能算法:遗传规划,即关于GP的VC代码程序,在项目文件中包含了GP的程序设计代码和经典问题求解程序。可以参考该程序进行遗传规划的程序设计工作,用于自己的毕业设计中。-genetic programming algorithm for the VC program Intelligent Algorithm : genetic programming, on the VC GP code procedures, the project document conta
遗传算法笔记
- 提供遗传算法的经典笔记,内付典型程序代码,希望对大家有帮助。-provide genetic algorithm classic Notes, which pay the typical procedure code, and I hope to be helpful.
kpca
- KPCA的提出者亲自写的程序。是一份很值得收藏的经典代码。-KPCA the author himself procedures. It is a very worthwhile collection of classic code.
waveletneural
- 小波神经网络的MATLAB原代码,十分经典,大家一起学。-WNN MATLAB source, classical, we must all learn.
sol 经典算法实现题 士兵站队问题
- 经典算法实现题----士兵站队问题,包括题目PDF和程序代码实现,与大家分享。-classical algorithm that - soldiers stand in line, including the subject PDF and procedures to achieve code, share with you.
netlab
- 神经网络的经典代码,为大牛所写。当然,很有借鉴价值
支持向量机算法及其代码实现
- 支持向量机(SVM),起初由vapnik提出时,是作为寻求最优(在一定程度上)二分类器的一种技术。後来它又被拓展到回归和聚类应用。SVM是一种基于核函数的方法,它通过某些核函数把特征向量映射到高维空间,然後建立一个线性判别函数(或者说是一个高维空间中的能够区分训练数据的最优超平面,参考异或那个经典例子)。假如SVM没有明确定义核函数,高维空间中任意两点距离就需要定义。
lk20
- 经典的Lucas-Kanade算法的实现。打包了源代码和相应的论文。-The classic Lucas-Kanade algorithm. Packaged the source code and the corresponding papers.
BP
- BP神经网络经典代码,可执行程序,大家快下啊-Classical BP neural network code, executable programs, we quickly under ah
GA
- 遗传算法c++实现的经典代码,有种方式,适合初学遗传算法的朋友们参考-Genetic algorithm c++ code to achieve the classic, a kind of way, suitable for beginners reference genetic algorithm friends
VC_programming_model_classic_small_code_artificial
- VC编程实现人工智能小模型的经典代码 VC programming model of the classic small-code artificial intelligence-VC programming model of the classic small-code artificial intelligence
GA_Denis_Cormier
- 一个遗传算法的经典代码,供大家参考学习,有什么好的代码一起分享-A classical genetic algorithm code for your reference learning, what good code share
antnet-1.0
- 蚁群路由算法经典代码,可用于各种有线无线网络。-Classic ant routing algorithm code that can be used for a variety of wired and wireless networks.
经典数据挖掘算法代码完备集合
- R语言,数据挖掘算法的代码,书中案例实现代码(R language,Data mining algorithm code,the book case implementation code)
算法竞赛入门经典代码仓库
- 诸多经典的算法,可以从入门小白做起快速掌握了解其主要内容(Many classic algorithms, you can start from the small white, quickly grasp the main understanding of its content)
深度学习入门:基于Python的理论与实现.pdf+代码
- 本书是深度学习真正意义上的入门书,深入浅出地剖析了深度学习的原理和相关技术。书中使用Python3,尽量不依赖外部库或工具,从基本的数学知识出发,带领读者从零创建一个经典的深度学习网络,使读者在此过程中逐步理解深度学习。书中不仅介绍了深度学习和神经网络的概念、特征等基础知识,对误差反向传播法、卷积神经网络等也有深入讲解,此外还介绍了深度学习相关的实用技巧,自动驾驶、图像生成、强化学习等方面的应用,以及为什么加深层可以提高识别精度等“为什么”的问题。(This book is a true sen
鲸鱼优化算法matlab代码
- 鲸鱼优化算法matlab代码,可直接用于调用23个经典测试函数进行测试,且有对应注释,代码可读性强,简洁易懂。
经典回归(LR)算法
- 经典的回归算法,可以解决大多数的的简单分类问题,速度快,代码规范。