Tim Blog

Himmel oder Hölle

tensorflow Autoencoder

Autoencoder(AE) is an unsupervised learning method. it can be used to compress the original input information, so that learning is eased with reduced data size. At the same time the new encoded inp...

tensorflow Siamese Network

siamese network is a network that weights can be shared between layers usage this network can be used to decide the similarities between two inputs depending on the input the network structure ...

tensorflow Filter Response Normalization

To avoid that normalization dependes on batch size will lead to bad results when batch size on test and training is different, filter Response Normalization is introduced structure Filter Response...

tensorflow NIN

Network in Network is a micro network to replace the pure conv laver to extract more complex and non-linear features structure the difference between traditionale conv layer and mlpconv layer is ...

tensorflow ResNet

ResNet consists of multi shallow network blocks (residual blocks) the purpose of ResNet is to keep model from degradation if NN depth increases advantage: deeper networks solve model degradati...

tensorflow Global Average Pooling

Global Average Pooling (GAP) is an replacement of FC layer, which has two benefits more native to categorize feature map less parameter to optimize to avoid overfitting principle traditio...

tensorflow DenseNet

Densely Connected Convolutional Networks (DenseNets) Each layer has direct access to the gradients from the loss function and the original input signal, leading to an implicit deep supervision ...

tensorflow summary usage

summary method can save the training process and relevant parameters, which can be later visualized in tensorboard besides the loss and accuracy data in also be saved in np format for visualization...

tensorflow multi thread computing

tensorflow offers two classes for multi threads computing: tf.Coordinator it can stop all subthreads in the queue and report exceptions to the main thread tf.QueueRunner it starts multi thread...

tensorflow parameter in command line

tf.app.flags support arguments pass-in during call python in command line purpose default global variables definition taking in arguments tf.app.flags(name, default_value, description) tf....