Skip to content
This repository has been archived by the owner on Oct 4, 2020. It is now read-only.
/ VGG Public archive

Keras implementation of VGG from the paper "Very Deep Convolutional Networks for Large-Scale Image Recognition" - https://arxiv.org/abs/1409.1556

License

Notifications You must be signed in to change notification settings

MrinalJain17/VGG

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

VGG

Keras implementation of VGG from the paper Very Deep Convolutional Networks for Large-Scale Image Recognition

Insturctions

  1. Clone the repository and navigate to the downloaded folder.
	git clone https://github.com/MrinalJain17/VGG.git
	cd VGG
  1. Import the module and get the required model.
	from vgg import VGG
	
	# Getting VGG-16 (16-layer VGG model) for a dataset with 20 classes
	model = VGG(model_type='D', num_classes=20)
	model.summary()
  1. The model was tested on the cifar-10 dataset.
    For further details, view the jupyter notebook by running the command:
	jupyter notebook cifar-10.py

Requirements

Python 3.x (preferably from the Anaconda Distribution)

Additional Libraries to install

	pip install keras

(With backend as Tensorflow)
For installation of Tensorflow, view instructions on their site here.

About

Keras implementation of VGG from the paper "Very Deep Convolutional Networks for Large-Scale Image Recognition" - https://arxiv.org/abs/1409.1556

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published