Skip to content

Simple Tensorflow implementation of Batch-Instance Normalization (NIPS 2018)

License

Notifications You must be signed in to change notification settings

bigbreadguy/Batch_Instance_Normalization-Tensorflow2.0

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 

Repository files navigation

Batch_Instance_Normalization-Tensorflow2.0

Simple Tensorflow 2.0 implementation of Batch-Instance Normalization (NIPS 2018).
Originally implemented in Tensorflow version 1 by taki0112.
Edited by Seunggeon Lim in reference to InstanceNormalization layer from Tensorflow examples pix2pix.py

Usage

Sequential API

model = tf.keras.Sequential()
model.add(BatchInstanceNormalization())

Functional API

conv = tf.keras.layers.Conv2D()(input)
norm = BatchInstanceNormalization()(conv)

About

Simple Tensorflow implementation of Batch-Instance Normalization (NIPS 2018)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages