Namespaces | Functions | Variables
inception_v4.py File Reference

Go to the source code of this file.

Namespaces

 inception_v4
 

Functions

def inception_v4.preprocess_input (x)
 
def inception_v4.conv2d_bn (x, nb_filter, num_row, num_col, padding='same', strides=(1, 1), use_bias=False)
 
def inception_v4.block_inception_a (input)
 
def inception_v4.block_reduction_a (input)
 
def inception_v4.block_inception_b (input)
 
def inception_v4.block_reduction_b (input)
 
def inception_v4.block_inception_c (input)
 
def inception_v4.inception_v4_base (input)
 
def inception_v4.inception_v4 (num_classes, dropout_keep_prob, weights, input_shape, include_top, transfer_learning=None)
 
def inception_v4.create_model (num_classes=1001, dropout_prob=0.2, weights=None, include_top=True, transfer_learning=None, input_shape=None)
 

Variables

string inception_v4.WEIGHTS_PATH = 'https://github.com/kentsommer/keras-inceptionV4/releases/download/2.1/inception-v4_weights_tf_dim_ordering_tf_kernels.h5'
 Implements the Inception Network v4 (http://arxiv.org/pdf/1602.07261v1.pdf) in Keras. More...
 
string inception_v4.WEIGHTS_PATH_NO_TOP = 'https://github.com/kentsommer/keras-inceptionV4/releases/download/2.1/inception-v4_weights_tf_dim_ordering_tf_kernels_notop.h5'