neural_de.external.maxim_tf package

Subpackages

Submodules

neural_de.external.maxim_tf.create_maxim_model module

Model class

neural_de.external.maxim_tf.create_maxim_model.Model(variant=None, input_resolution=(256, 256), **kw)[source]

Factory function to easily create a Model variant like ā€œSā€.

Parameters:
  • variant – UNet model variants. Options: ā€˜S-1’ | ā€˜S-2’ | ā€˜S-3’ | ā€˜M-1’ | ā€˜M-2’ | ā€˜M-3’

  • input_resolution – Size of the input images.

  • **kw – Other UNet config dicts.

Return type:

Model

Returns:

The MAXIM model.

Module contents

Contains code from the Tensorflow implementation of Maxim from https://github.com/sayakpaul/maxim-tf.