Series network for deep learning
A series network is a neural network for deep learning with layers arranged one after the other. It has a single input layer and a single output layer.
There are several ways to create a SeriesNetwork
object:
Load a pretrained network using alexnet
, darknet19
, vgg16
, or vgg19
. For an example, see Load Pretrained AlexNet Convolutional Neural Network.
Import a pretrained network from Keras using importKerasNetwork
. For an example, see Import and Plot Keras Network.
Import a pretrained network from Caffe using importCaffeNetwork
. For an example,
see Import Caffe Network.
Train or fine-tune a network using trainNetwork
. For an example, see
Train Network for Image Classification.
To learn about other pretrained networks, such as googlenet
and resnet50
, see Pretrained Deep Neural Networks.
activations | Compute deep learning network layer activations |
classify | Classify data using a trained deep learning neural network |
predict | Predict responses using a trained deep learning neural network |
predictAndUpdateState | Predict responses using a trained recurrent neural network and update the network state |
classifyAndUpdateState | Classify data using a trained recurrent neural network and update the network state |
resetState | Reset the state of a recurrent neural network |
plot | Plot neural network layer graph |
DAGNetwork
| alexnet
| analyzeNetwork
| assembleNetwork
| classify
| darknet19
| importCaffeNetwork
| plot
| predict
| trainNetwork
| trainingOptions
| vgg16
| vgg19