This is a keras code snippet for deep-learning. It also contains code snippet for transfer-learning, as well as different deep-learning algorithm eg. LeNet,InceptionNet,VGG16 etc.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Download Extension Click to Download or search in vscode extension bar keras-snippet
This is a keras code snippet extension that provide boilerplate for different CNN algorithm and the as well as for
various element involved at the time of writing deep learning code from scratch.
This snippet reduces the coding time
Features
Prefix
Description
!keras:import
This will import important different Library of CNN
!keras:cnn
This prefix will import a CNN layer boilerplate that you can change according to your need
!keras:cnn-pred
This prefix will create a model prediction code boilerplate after training of model
!keras:inception-v3
This prefix will create a IceptionV3 transfer learning model boilerplate
!keras:vgg16
This prefix will create a VGG16 transfer learning model boilerplate
!keras:vgg19
This prefix will create a VGG19 transfer learning model boilerplate
!keras:resnet-50
This prefix will create a ResNet50 transfer learning model boilerplate
!keras:xception
This prefix will create a ExceptionNet transfer learning model boilerplate
!keras:mnist-example
This prefix will create a MNIST digit classifier from scratch