Pattern Recognition with Neural Networks in C++

上传:huike47 浏览: 26 推荐: 0 文件:TGZ 大小:12.24MB 上传时间:2018-12-29 04:56:07 版权申诉
Preface Acknowledgment Chapter 1—Introduction 1.1 Pattern Recognition Systems 1.2 Motivation For Artificial Neural Network Approach 1.3 A Prelude To Pattern Recognition 1.4 Statistical Pattern Recognition 1.5 Syntactic Pattern Recognition 1.6 The Character Recognition Problem 1.7 Organization Of Topics References And Bibliography Chapter 2—Neural Networks: An Overview 2.1 Motivation for Overviewing Biological Neural Networks 2.2 Background 2.3 Biological Neural Networks 2.4 Hierarchical Organization in the Brain 2.5 Historical Background 2.6 Artificial Neural Networks References and Bibliography Chapter 3—Preprocessing 3.1 General 3.2 Dealing with Input from a Scanned Image 3.3 Image Compression 3.3.1 Image Compression Example 3.4 Edge Detection 3.5 Skeletonizing 3.5.1 Thinning Example 3.6 Dealing with Input From a Tablet 3.7 Segmentation References and Bibliography Chapter 4—Feed-Forward Networks with Supervised Learning 4.1 Feed-Forward Multilayer Perceptron (FFMLP) Architecture 4.2 FFMLP in C++ 4.3 Training with Back Propagation 4.3.1 Back Propagation in C++ 4.4 A Primitive Example 4.5 Training Strategies and Avoiding Local Minima 4.6 Variations on Gradient Descent 4.6.1 Block Adaptive vs. Data Adaptive Gradient Descent 4.6.2 First-Order vs. Second-Order Gradient Descent 4.7 Topology 4.8 ACON vs. OCON 4.9 Overtraining and Generalization 4.10 Training Set Size and Network Size 4.11 Conjugate Gradient Method 4.12 ALOPEX References and Bibliography Chapter 5—Some Other Types of Neural Networks 5.1 General 5.2 Radial Basis Function Networks 5.2.1 Network Architecture 5.2.2 RBF Training 5.2.3 Applications of RBF Networks 5.3 Higher Order Neural Networks 5.3.1 Introduction 5.3.2 Architecture 5.3.3 Invariance to Geometric Transformations 5.3.4 An Example 5.3.5 Practical Applications References and Bibliography Chapter 6—Feature Extraction I: Geometric Features and Transformations 6.1 General 6.2 Geometric Features (Loops, Intersections, and Endpoints) 6.2.1 Intersections and Endpoints 6.2.2 Loops 6.3 Feature Maps 6.4 A Network Example Using Geometric Features 6.5 Feature Extraction Using Transformations 6.6 Fourier Descriptors 6.7 Gabor Transformations and Wavelets References And Bibliography Chapter 7—Feature Extraction II: Principal Component Analysis 7.1 Dimensionality Reduction 7.2 Principal Components 7.2.1 PCA Example 7.3 Karhunen-Loeve (K-L) Transformation 7.3.1 K-L Transformation Example 7.4 Principal Component Neural Networks 7.5 Applications References and Bibliography Chapter 8—Kohonen Networks and Learning Vector Quantization 8.1 General 8.2 The K-Means Algorithm 8.2.1 K-Means Example 8.3 An Introduction To The Kohonen Model 8.3.1 Kohonen Example 8.4 The Role Of Lateral Feedback 8.5 Kohonen Self-Organizing Feature Map 8.5.1 SOFM Example 8.6 Learning Vector Quantization 8.6.1 LVQ Example 8.7 Variations On LVQ 8.7.1 LVQ2 8.7.2 LVQ2.1 8.7.3 LVQ3 8.7.4 A Final Variation Of LVQ References And Bibliography Chapter 9—Neural Associative Memories and Hopfield Networks 9.1 General 9.2 Linear Associative Memory (LAM) 9.2.1 An Autoassociative LAM Example 9.3 Hopfield Networks 9.4 A Hopfield Example 9.5 Discussion 9.6 Bit Map Example 9.7 Bam Networks 9.8 A Bam Example References And Bibliography Chapter 10—Adaptive Resonance Theory (ART) 10.1 General 10.2 Discovering The Cluster Structure 10.3 Vector Quantization 10.3.1 VQ Example 1 10.3.2 VQ Example 2 10.3.3 VQ Example 3 10.4 Art Philosophy 10.5 The Stability-Plasticity Dilemma 10.6 ART1: Basic Operation 10.7 ART1: Algorithm 10.8 The Gain Control Mechanism 10.8.1 Gain Ccontrol Example 1 10.8.2 Gain Control Example 2 10.9 ART2 Model 10.10 Discussion 10.11 Applications References and Bibliography Chapter 11—Neocognitron 11.1 Introduction 11.2 Architecture 11.3 Example of a System with Sample Training Patterns References and Bibliography Chapter 12—Systems with Multiple Classifiers 12.1 General 12.2 A Framework for Combining Multiple Recognizers 12.3 Voting Schemes 12.4 The Confusion Matrix 12.5 Reliability 12.6 Some Empirical Approaches References and Bibliography Index 2.2 Background 2.3 Biological Neural Networks 2.4 Hierarchical Organization in the Brain 2.5 Historical Background 2.6 Artificial Neural Networks References and Bibliography Chapter 3—Preprocessing 3.1 General 3.2 Dealing with Input from a Scanned Image 3.3 Image Compression 3.3.1 Image Compression Example 3.4 Edge Detection 3.5 Skeletonizing 3.5.1 Thinning Example 3.6 Dealing with Input From a Tablet 3.7 Segmentation References and Bibliography Chapter 4—Feed-Forward Networks with Supervised Learning 4.1 Feed-Forward Multilayer Perceptron (FFMLP) Architecture 4.2 FFMLP in C++ 4.3 Training with Back Propagation 4.3.1 Back Propagation in C++ 4.4 A Primitive Example 4.5 Training Strategies and Avoiding Local Minima 4.6 Variations on Gradient Descent 4.6.1 Block Adaptive vs. Data Adaptive Gradient Descent 4.6.2 First-Order vs. Second-Order Gradient Descent 4.7 Topology 4.8 ACON vs. OCON 4.9 Overtraining and Generalization 4.10 Training Set Size and Network Size 4.11 Conjugate Gradient Method 4.12 ALOPEX References and Bibliography Chapter 5—Some Other Types of Neural Networks 5.1 General 5.2 Radial Basis Function Networks 5.2.1 Network Architecture 5.2.2 RBF Training 5.2.3 Applications of RBF Networks 5.3 Higher Order Neural Networks 5.3.1 Introduction 5.3.2 Architecture 5.3.3 Invariance to Geometric Transformations 5.3.4 An Example 5.3.5 Practical Applications References and Bibliography Chapter 6—Feature Extraction I: Geometric Features and Transformations 6.1 General 6.2 Geometric Features (Loops, Intersections, and Endpoints) 6.2.1 Intersections and Endpoints 6.2.2 Loops 6.3 Feature Maps 6.4 A Network Example Using Geometric Features 6.5 Feature Extraction Using Transformations 6.6 Fourier Descriptors 6.7 Gabor Transformations and Wavelets References And Bibliography Chapter 7—Feature Extraction II: Principal Component Analysis 7.1 Dimensionality Reduction 7.2 Principal Components 7.2.1 PCA Example 7.3 Karhunen-Loeve (K-L) Transformation 7.3.1 K-L Transformation Example 7.4 Principal Component Neural Networks 7.5 Applications References and Bibliography Chapter 8—Kohonen Networks and Learning Vector Quantization 8.1 General 8.2 The K-Means Algorithm 8.2.1 K-Means Example 8.3 An Introduction To The Kohonen Model 8.3.1 Kohonen Example 8.4 The Role Of Lateral Feedback 8.5 Kohonen Self-Organizing Feature Map 8.5.1 SOFM Example 8.6 Learning Vector Quantization 8.6.1 LVQ Example 8.7 Variations On LVQ 8.7.1 LVQ2 8.7.2 LVQ2.1 8.7.3 LVQ3 8.7.4 A Final Variation Of LVQ References And Bibliography Chapter 9—Neural Associative Memories and Hopfield Networks 9.1 General 9.2 Linear Associative Memory (LAM) 9.2.1 An Autoassociative LAM Example 9.3 Hopfield Networks 9.4 A Hopfield Example 9.5 Discussion 9.6 Bit Map Example 9.7 Bam Networks 9.8 A Bam Example References And Bibliography Chapter 10—Adaptive Resonance Theory (ART) 10.1 General 10.2 Discovering The Cluster Structure 10.3 Vector Quantization 10.3.1 VQ Example 1 10.3.2 VQ Example 2 10.3.3 VQ Example 3 10.4 Art Philosophy 10.5 The Stability-Plasticity Dilemma 10.6 ART1: Basic Operation 10.7 ART1: Algorithm 10.8 The Gain Control Mechanism 10.8.1 Gain Ccontrol Example 1 10.8.2 Gain Control Example 2 10.9 ART2 Model 10.10 Discussion 10.11 Applications References and Bibliography Chapter 11—Neocognitron 11.1 Introduction 11.2 Architecture 11.3 Example of a System with Sample Training Patterns References and Bibliography Chapter 12—Systems with Multiple Classifiers 12.1 General 12.2 A Framework for Combining Multiple Recognizers 12.3 Voting Schemes 12.4 The Confusion Matrix 12.5 Reliability 12.6 Some Empirical Approaches References and Bibliography Index
上传资源
用户评论

a44727 2018-12-29 04:56:08

还不错,学习学习的好资料

丶半浮生 2018-12-29 04:56:08

感谢分享,绝对好书,谢谢

dense130 2018-12-29 04:56:08

很好。完整版本。网上有一个chm格式版本,许多章节不能显示。

hitcs28114 2018-12-29 04:56:08

不是PDF,不过还是可以看看的。

w39917 2018-12-29 04:56:08

还不错,用C++做模式识别可以参考

tin71632 2018-12-29 04:56:08

tgz格式压缩包,包含 了一堆html网页,可用浏览器看文字部分,图像太小根本看不清楚

xweiwei30842 2018-12-29 04:56:08

打开完全没问题,Liunx tar格式的,展开后用浏览器即可阅读。 绝对好书!

Geo-gra 2018-12-29 04:56:08

打不开,文件格式有问题

chile22302 2018-12-29 04:56:08

不是PDF版的,不过还是能看看

相关推荐
Pattern recognition with neural networks in C++
Pattern recognition with neural networks in C++
PDF
0B
2018-12-29 05:08
Neural Networks for Pattern Recognition
神经网络与模式识别方面的经典书籍,没下过的来下
PDF
0B
2019-04-06 10:31
Neural Networks for Pattern Recognition Bishop
Bishop的经典之作,编写了著名的《机器学习与模式识别》,这里是他的关于神经网络另一经典之作,可以作为神经网络的学习教材和参考书籍。英文版本
PDF
0B
2018-12-29 05:13
Neural Networks for Pattern Recognition.pdf
For those entering the field of artificial neural networks, there has been an acute need for an auth
PDF
0B
2018-12-29 05:04
Pattern Recognition Using Neural and Functional Networks
ISBN:9783540851295-3540851291Paperback:150pagesData:December1,2008新书啊!!!!Description:Biologicallyins
PDF
0B
2019-07-29 03:08
Neural Networks for Pattern Recognition.zip
《机器学习与模式识别》同作者的又一经典之作,本书可以作为模式识别、神经网络的学习教材和参考书籍。本书为英文PDF版本,下载解压即可。
ZIP
0B
2020-05-27 03:55
Pattern Recognition with neural networks in C++ 配套源码光盘
这是书籍《神经网络模式识别及其实现-Pattern Recognition with neural networks in C++》,(美)Abhijit S. Pandya,Robert B. Ma
RAR
0B
2018-12-29 05:10
Pattern Recognition with Neural Networks in C++.pdf
太辛苦了!!这个pdf是我从chm格式原文档重新排版并用adobe acrobat pro7.0 转化过来的!并且包含书签,非常便于阅读和注释!! 注:chm格式的和本书的所谓的随书光盘csdn上都可
PDF
0B
2018-12-29 05:10
Pattern Recognition With Neural Networks In C++source
PatternRecognitionWithNeuralNetworksInC++,(Bookdisk)byAbhijitPandya,IEEEPress1995
RAR
0B
2019-07-15 17:48
Pattern Recognition With Neural Networks In C.pdf
Whydowefeelaneedtowriteabookaboutpatternrecognitionwhenmanyexcellentbooksarealreadyavailableonthiscl
PDF
0B
2019-07-15 17:48
Pattern Recognition and Neural Networks B.D.Ripley.pdf
edit by ripley. university oxford
PDF
0B
2018-12-29 05:04
Neural Networks for Face Recognition
This Code gives you an opportunity to apply neural network learning to the problem of face recogniti
ZIP
11KB
2021-04-26 03:59
Facial Expression Recognition with Convolutional Neural Networks
Facial Expression Recognition with Convolutional Neural Networks
PDF
0B
2018-12-08 03:54
Convolutional Neural Networks for Visual Recognition5
介绍 Convolutional Neural Networks 在计算机视觉的应用的系列讲义的第五讲。
PDF
0B
2019-04-16 19:52
Exploring Randomly Wired Neural Networks for Image Recognition
Kaiming大神新作。Exploring Randomly Wired Neural Networks for Image Recognition。
PDF
0B
2019-04-16 19:52