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.
Train or fine-tune a network using trainNetwork
. For an example, see
Train Network for Image Classification.
Import a pretrained network from TensorFlow™-Keras, Caffe, or the ONNX™ (Open Neural Network Exchange) model format.
For a Keras model, use importKerasNetwork
. For an example, see Import and Plot Keras Network.
For a Caffe model, use importCaffeNetwork
. For an
example, see Import Caffe Network.
For an ONNX model, use importONNXNetwork
. For an example, see Import ONNX Network.
Note
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 |
alexnet
| analyzeNetwork
| assembleNetwork
| classify
| DAGNetwork
| darknet19
| importCaffeNetwork
| plot
| predict
| trainingOptions
| trainNetwork
| vgg16
| vgg19