RAMjET

ramjet.models.eos

Code for a model replacing batch normalization with SELUs.

Module Contents

Classes

Eos A model replacing batch normalization with SELUs.
class Eos[source]

Bases: tensorflow.keras.Model

A model replacing batch normalization with SELUs.

__init__(self)[source]

Initialize self. See help(type(self)) for accurate signature.

call(self, inputs, training=False, mask=None)[source]

The forward pass of the layer.

Parameters:
  • inputs – The input tensor.
  • training – A boolean specifying if the layer should be in training mode.
  • mask – A mask for the input tensor.
Returns:

The output tensor of the layer.