All Projects → titu1994 → Inception V4

titu1994 / Inception V4

Licence: mit
Inception-v4, Inception - Resnet-v1 and v2 Architectures in Keras

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Inception V4

Awesome Ehr Deeplearning
Curated list of awesome papers for electronic health records(EHR) mining, machine learning, and deep learning.
Stars: ✭ 269 (-23.14%)
Mutual labels:  paper
Tucl
The first-ever paper on the Unix shell written by Ken Thompson in 1976 scanned, transcribed, and redistributed with permission
Stars: ✭ 303 (-13.43%)
Mutual labels:  paper
Akarin
Akarin is a powerful (not yet) server software from the 'new dimension'
Stars: ✭ 332 (-5.14%)
Mutual labels:  paper
Plotsquared
PlotSquared - Reinventing the plotworld
Stars: ✭ 284 (-18.86%)
Mutual labels:  paper
Purpur
Purpur is a fork of Paper, Tuinity, and Airplane with the goal of providing new and interesting configuration options, which allow for creating a unique gameplay experience not seen anywhere else
Stars: ✭ 286 (-18.29%)
Mutual labels:  paper
Vime
Code for the paper "Curiosity-driven Exploration in Deep Reinforcement Learning via Bayesian Neural Networks"
Stars: ✭ 310 (-11.43%)
Mutual labels:  paper
Papyrus
📄 Unofficial Dropbox Paper desktop app
Stars: ✭ 263 (-24.86%)
Mutual labels:  paper
Bestofml
The best resources around Machine Learning
Stars: ✭ 349 (-0.29%)
Mutual labels:  paper
Surface Defect Detection
🐎📈 Constantly summarizing open source dataset and important critical papers in the field of surface defect research which are very important. 🐋
Stars: ✭ 287 (-18%)
Mutual labels:  paper
Languagedetector
PHP Class to detect languages from any free text
Stars: ✭ 317 (-9.43%)
Mutual labels:  paper
Summary Of Recommender System Papers
阅读过的推荐系统论文的归类总结,持续更新中…
Stars: ✭ 288 (-17.71%)
Mutual labels:  paper
Speech Separation Paper Tutorial
A must-read paper for speech separation based on neural networks
Stars: ✭ 288 (-17.71%)
Mutual labels:  paper
React Native Paper Onboarding
Paper Onboarding is a material design UI slider for `React Native`.
Stars: ✭ 310 (-11.43%)
Mutual labels:  paper
Alae
[CVPR2020] Adversarial Latent Autoencoders
Stars: ✭ 3,178 (+808%)
Mutual labels:  paper
Cyclegan
Tensorflow implementation of CycleGAN
Stars: ✭ 348 (-0.57%)
Mutual labels:  paper
Papernote
paper note, including personal comments, introduction, code etc
Stars: ✭ 268 (-23.43%)
Mutual labels:  paper
Sgx Papers
A list of system papers using/about Intel SGX
Stars: ✭ 306 (-12.57%)
Mutual labels:  paper
Action Recognition Visual Attention
Action recognition using soft attention based deep recurrent neural networks
Stars: ✭ 350 (+0%)
Mutual labels:  paper
Weightnorm
Example code for Weight Normalization, from "Weight Normalization: A Simple Reparameterization to Accelerate Training of Deep Neural Networks"
Stars: ✭ 347 (-0.86%)
Mutual labels:  paper
Paper
High performance Spigot fork that aims to fix gameplay and mechanics inconsistencies
Stars: ✭ 5,293 (+1412.29%)
Mutual labels:  paper

Inception v4 in Keras

Implementations of the Inception-v4, Inception - Resnet-v1 and v2 Architectures in Keras using the Functional API. The paper on these architectures is available at "Inception-v4, Inception-ResNet and the Impact of Residual Connections on Learning".

The models are plotted and shown in the architecture sub folder. Due to lack of suitable training data (ILSVR 2015 dataset) and limited GPU processing power, the weights are not provided.

Inception v4

The python script 'inception_v4.py' contains the methods necessary to create the Inception v4 network.

Usage:

from inception_v4 import create_inception_v4

model = create_inception_v4()

Inception ResNet v1

The python script 'inception_resnet_v1.py' contains the methods necessary to create the Inception ResNet v1 network. It is to be noted that scaling of the residuals is turned OFF by default. This can be rectified by supplying 'scale=True' in the create method.

Usage:

from inception_resnet_v1 import create_inception_resnet_v1

model = create_inception_resnet_v1()

Inception ResNet v2

The python script 'inception_resnet_v2.py' contains the methods necessary to create the Inception ResNet v2 network. It is to be noted that scaling of the residuals is turned ON by default.

There are a few differences in the v2 network from the original paper:
[1] In the B blocks: 'ir_conv' nb of filters is given as 1154 in the paper, however input size is 1152.
This causes inconsistencies in the merge-sum mode, therefore the 'ir_conv' filter size is reduced to 1152 to match input size.
[2] In the C blocks: 'ir_conv' nb of filter is given as 2048 in the paper, however input size is 2144.
This causes inconsistencies in the merge-sum mode, therefore the 'ir_conv' filter size is increased to 2144 to match input size.

Usage:

from inception_resnet_v2 import create_inception_resnet_v2

model = create_inception_resnet_v2(scale=True)

Architectures

Inception v4

Inception ResNet v1

Inception ResNet v2

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].