All Projects → eveningdong → DenseNet-Tensorflow

eveningdong / DenseNet-Tensorflow

Licence: other
Reimplementation of DenseNet

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to DenseNet-Tensorflow

Ruby2 Rails4 Bootstrap Heroku
A starter application based on Ruby 2.4, Rails 4.2 and Bootstrap for Sass 3, deployable on Heroku
Stars: ✭ 181 (+1031.25%)
Mutual labels:  slim
densenet-tensorflow
A clean densenet in tensorflow
Stars: ✭ 37 (+131.25%)
Mutual labels:  densenet
rawphp
A powerful, robust and API-first, PHP framework that helps people from different PHP backgrounds work on the same project seamlessly. You can write Laravel, CakePHP, Slim, Symphone and Procedural PHP code inside it and it all works perfectly. Its the PHP Framework for everyone.
Stars: ✭ 31 (+93.75%)
Mutual labels:  slim
Fengniao
A command line tool for cleaning unused resources in Xcode.
Stars: ✭ 2,852 (+17725%)
Mutual labels:  slim
DAOSL
Implementation of Domain Adaption in One-Shot Learning
Stars: ✭ 14 (-12.5%)
Mutual labels:  slim
Densenet
MXNet implementation for DenseNet
Stars: ✭ 28 (+75%)
Mutual labels:  densenet
Tf featureextraction
Convenient wrapper for TensorFlow feature extraction from pre-trained models using tf.contrib.slim
Stars: ✭ 169 (+956.25%)
Mutual labels:  slim
SLiM
SLiM is a genetically explicit forward simulation software package for population genetics and evolutionary biology. It is highly flexible, with a built-in scripting language, and has a cross-platform graphical modeling environment called SLiMgui.
Stars: ✭ 102 (+537.5%)
Mutual labels:  slim
nih-chest-xrays
A collection of projects which explore image classification on chest x-ray images (via the NIH dataset)
Stars: ✭ 32 (+100%)
Mutual labels:  densenet
charcoal-app
Slim-based application (modules, routes / controllers and middlewares)
Stars: ✭ 13 (-18.75%)
Mutual labels:  slim
basepath
Base path detector for Slim 4
Stars: ✭ 36 (+125%)
Mutual labels:  slim
plants disease detection
AI Challenger 2018 农作物病害检测
Stars: ✭ 45 (+181.25%)
Mutual labels:  densenet
SRDenseNet-pytorch
SRDenseNet-pytorch(ICCV_2017)
Stars: ✭ 113 (+606.25%)
Mutual labels:  densenet
Slim4 Skeleton
A Slim 4 Skeleton
Stars: ✭ 237 (+1381.25%)
Mutual labels:  slim
awesome-computer-vision-models
A list of popular deep learning models related to classification, segmentation and detection problems
Stars: ✭ 419 (+2518.75%)
Mutual labels:  densenet
Slim Born
Slim Framework 3 and 4 skeleton application has authentication MVC construction.
Stars: ✭ 179 (+1018.75%)
Mutual labels:  slim
slim-boilerplate
A PHP boilerplate,for a fast API prototyping based on Slim Framework, for start projects with Eloquent ORM, Validation, Auth (JWT), Repositories and Transformers ready
Stars: ✭ 58 (+262.5%)
Mutual labels:  slim
RecSys Course 2017
DEPRECATED This is the official repository for the 2017 Recommender Systems course at Polimi.
Stars: ✭ 23 (+43.75%)
Mutual labels:  slim
GraphQLSuiteCRM
GraphQL SuiteCRM - Integrate with SuiteCRM using GraphQL
Stars: ✭ 18 (+12.5%)
Mutual labels:  slim
Skin Lesions Classification DCNNs
Transfer Learning with DCNNs (DenseNet, Inception V3, Inception-ResNet V2, VGG16) for skin lesions classification
Stars: ✭ 47 (+193.75%)
Mutual labels:  densenet

DenseNet-Tensorflow

Reimplementation of DenseNet on Image Recognition

Densely Connected Convolutional Networks(DenseNet), won the Best Paper Award on CVPR 2017.

This is an (re-)implementation of DenseNet in TensorFlow for image recognition tasks. The (re-)implementation is based on official Torch DenseNet with Tensorflow Slim.

DenseNet Table

In the paper, DenseNet-264 seems to be a typo, since there is no way the number of layers to be an even number. See DenseNet-121, 169, 201, if you add up, which is 1 + 6 x 2 + 1 + 12 x 2 + 1 + 64 x 2 + 1 + 48 x 2 + 1 + 1 = 265.

Features

  • DenseNet-B, DenseNet-C, DenseNet-BC
  • DenseNet-121, DenseNet-169, DenseNet-201, DenseNet-265
  • Training on CIFAR
  • Training on SVHN
  • Training on ImageNet

Requirement

Tensorflow 1.4

python 3.5
tensorflow 1.4
CUDA  8.0
cuDNN 6.0

Tensorflow 1.2

python 3.5
tensorflow 1.2
CUDA  8.0
cuDNN 5.1

Installation

pip3 install -r requirements.txt

Performance

CIFAR10

L=100, k=12 Accuracy Top 1 Error
paper 94.08% 5.92%
repo 95.75% 4.25%

cifar10_train

cifar10_val

CIFAR100

L=100, k=12 Accuracy Top 1 Error
paper 75.85% 24.15%
repo 77.25% 22.75%

cifar100_train

cifar100_val

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].