November 2019
Intermediate to advanced
304 pages
8h 40m
English
Here are some important pre-trained models offered by the DL4J Model Zoo API:
This is a very deep convolutional neural network targeting large-scale image recognition tasks. We can use transfer learning to train the model further. All we have to do is import VGG16 from the model zoo:
ZooModel zooModel =VGG16.builder().build(); ComputationGraph network = (ComputationGraph)zooModel.initPretrained();
Note that the underlying architecture of the VGG16 model in the DL4J Model Zoo API is ComputationGraph.
This is a real-time object detection model for fast and accurate ...