FCNNAutoencoder¶
Inheritance Diagram

-
class
ashpy.models.convolutional.autoencoders.FCNNAutoencoder(layer_spec_input_res, layer_spec_target_res, kernel_size, initial_filters, filters_cap, encoding_dimension, channels)[source]¶ Bases:
tensorflow.python.keras.engine.training.ModelPrimitive Model for all fully convolutional autoencoders.
Examples
- Direct Usage:
autoencoder = FCNNAutoencoder( layer_spec_input_res=(64, 64), layer_spec_target_res=(8, 8), kernel_size=5, initial_filters=32, filters_cap=128, encoding_dimension=100, channels=3, ) encoding, reconstruction = autoencoder(tf.zeros((1, 64, 64, 3))) print(encoding.shape) print(reconstruction.shape)
Methods
__init__(layer_spec_input_res, …)Instantiate the FCNNBaseAutoEncoder.call(inputs[, training])Execute the model on input data. 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__(layer_spec_input_res, layer_spec_target_res, kernel_size, initial_filters, filters_cap, encoding_dimension, channels)[source]¶ Instantiate the
FCNNBaseAutoEncoder.Parameters: - layer_spec_input_res (
tupleof (int,int)) – Shape of the input tensors. - layer_spec_target_res – (
tupleof (int,int)): Shape of tensor desired as output of_get_layer_spec(). - kernel_size (int) – Kernel used by the convolution layers.
- initial_filters (int) – Numbers of filters to used as a base value.
- filters_cap (int) – Cap filters to a set amount, in the case of an Encoder is a ceil value AKA the max amount of filters.
- encoding_dimension (int) – encoding dimension.
- channels (int) – Number of channels for the reconstructed image.
Returns: - layer_spec_input_res (