更新时间:2021-08-20 10:25:39
coverpage
Title Page
Copyright
Neural Networks with R
Credits
About the Authors
About the Reviewer
www.PacktPub.com
Why subscribe?
Customer Feedback
Preface
What this book covers
What you need for this book
Who this book is for
Conventions
Reader feedback
Customer support
Downloading the example code
Errata
Piracy
Questions
Neural Network and Artificial Intelligence Concepts
Introduction
Inspiration for neural networks
How do neural networks work?
Layered approach
Weights and biases
Training neural networks
Supervised learning
Unsupervised learning
Epoch
Activation functions
Different activation functions
Linear function
Unit step activation function
Sigmoid
Hyperbolic tangent
Rectified Linear Unit
Which activation functions to use?
Perceptron and multilayer architectures
Forward and backpropagation
Step-by-step illustration of a neuralnet and an activation function
Feed-forward and feedback networks
Gradient descent
Taxonomy of neural networks
Simple example using R neural net library - neuralnet()
Let us go through the code line-by-line
Implementation using nnet() library
Deep learning
Pros and cons of neural networks
Pros
Cons
Best practices in neural network implementations
Quick note on GPU processing
Summary
Learning Process in Neural Networks
What is machine learning?
Reinforcement learning
Training and testing the model
The data cycle
Evaluation metrics
Confusion matrix
True Positive Rate
True Negative Rate
Accuracy
Precision and recall
F-score
Receiver Operating Characteristic curve
Learning in neural networks
Back to backpropagation
Neural network learning algorithm optimization
Supervised learning in neural networks
Boston dataset
Neural network regression with the Boston dataset
Unsupervised learning in neural networks
Competitive learning
Kohonen SOM
Deep Learning Using Multilayer Neural Networks
Introduction of DNNs
R for DNNs
Multilayer neural networks with neuralnet
Training and modeling a DNN using H2O
Deep autoencoders using H2O
Perceptron Neural Network Modeling – Basic Models
Perceptrons and their applications
Simple perceptron – a linear separable classifier
Linear separation
The perceptron function in R
Multi-Layer Perceptron
MLP R implementation using RSNNS
Training and Visualizing a Neural Network in R
Data fitting with neural network
Exploratory analysis
Neural network model