BaseDecoder¶
Inheritance Diagram

-
class
ashpy.models.fc.decoders.BaseDecoder(hidden_units, output_shape)[source]¶ Bases:
ashpy.models.fc.interfaces.FCInterfacePrimitive Model for all fully connected decoder based architecture.
Examples
decoder = BaseDecoder( hidden_units=[64,128,256], output_shape=55) print(decoder(tf.zeros((1,10))).shape)
(1, 55)
Methods
__init__(hidden_units, output_shape)Instantiate the
BaseDecoder.Attributes
activity_regularizerOptional regularizer function for the output of this layer.
dtypedynamicinbound_nodesDeprecated, do NOT use! Only for compatibility with external Keras.
inputRetrieves the input tensor(s) of a layer.
input_maskRetrieves the input mask tensor(s) of a layer.
input_shapeRetrieves the input shape(s) of a layer.
input_specGets the network’s input specs.
layerslossesLosses which are associated with this Layer.
metricsReturns the model’s metrics added using compile, add_metric APIs.
metrics_namesReturns the model’s display labels for all outputs.
nameReturns the name of this module as passed or determined in the ctor.
name_scopeReturns a tf.name_scope instance for this class.
non_trainable_variablesnon_trainable_weightsoutbound_nodesDeprecated, do NOT use! Only for compatibility with external Keras.
outputRetrieves the output tensor(s) of a layer.
output_maskRetrieves the output mask tensor(s) of a layer.
output_shapeRetrieves the output shape(s) of a layer.
run_eagerlySettable attribute indicating whether the model should run eagerly.
sample_weightsstate_updatesReturns the updates from all layers that are stateful.
statefulsubmodulesSequence of all sub-modules.
trainabletrainable_variablesSequence of variables owned by this module and it’s submodules.
trainable_weightsupdatesvariablesReturns the list of all layer variables/weights.
weightsReturns the list of all layer variables/weights.
-
__init__(hidden_units, output_shape)[source]¶ Instantiate the
BaseDecoder.- Parameters
hidden_units (
tupleofint) – Number of units per hidden layer.output_shape (int) – Amount of units of the last
tf.keras.layers.Dense.
- Returns
-