o
    i e@                     @   s   d Z ddlmZ ddlmZ ddlmZ ddlmZ ddlmZ ddlmZ ddl	m
Z
 dd	lmZ dd
lmZ ddlmZ ddlmZ edG dd deZdS )z%Locally-connected layer for 2D input.    )activations)backend)constraints)initializers)regularizers)Layer)	InputSpec)locally_connected_utils)
conv_utils)tf_utils)keras_exportzkeras.layers.LocallyConnected2Dc                       sx   e Zd ZdZ													d fd	d
	Zedd Zejdd Z	ejdd Z
dd Z fddZ  ZS )LocallyConnected2Da  Locally-connected layer for 2D inputs.

    The `LocallyConnected2D` layer works similarly
    to the `Conv2D` layer, except that weights are unshared,
    that is, a different set of filters is applied at each
    different patch of the input.

    Note: layer attributes cannot be modified after the layer has been called
    once (except the `trainable` attribute).

    Examples:
    ```python
        # apply a 3x3 unshared weights convolution with 64 output filters on a
        32x32 image
        # with `data_format="channels_last"`:
        model = Sequential()
        model.add(LocallyConnected2D(64, (3, 3), input_shape=(32, 32, 3)))
        # now model.output_shape == (None, 30, 30, 64)
        # notice that this layer will consume (30*30)*(3*3*3*64) + (30*30)*64
        parameters

        # add a 3x3 unshared weights convolution on top, with 32 output filters:
        model.add(LocallyConnected2D(32, (3, 3)))
        # now model.output_shape == (None, 28, 28, 32)
    ```

    Args:
        filters: Integer, the dimensionality of the output space (i.e. the
          number of output filters in the convolution).
        kernel_size: An integer or tuple/list of 2 integers, specifying the
          width and height of the 2D convolution window. Can be a single integer
          to specify the same value for all spatial dimensions.
        strides: An integer or tuple/list of 2 integers, specifying the strides
          of the convolution along the width and height. Can be a single integer
          to specify the same value for all spatial dimensions.
        padding: Currently only support `"valid"` (case-insensitive). `"same"`
          will be supported in future. `"valid"` means no padding.
        data_format: A string, one of `channels_last` (default) or
          `channels_first`. The ordering of the dimensions in the inputs.
          `channels_last` corresponds to inputs with shape `(batch, height,
            width, channels)` while `channels_first` corresponds to inputs with
            shape
          `(batch, channels, height, width)`. When unspecified, uses
          `image_data_format` value found in your Keras config file at
          `~/.keras/keras.json` (if exists) else 'channels_last'.
          Defaults to 'channels_last'.
        activation: Activation function to use. If you don't specify anything,
          no activation is applied (ie. "linear" activation: `a(x) = x`).
        use_bias: Boolean, whether the layer uses a bias vector.
        kernel_initializer: Initializer for the `kernel` weights matrix.
        bias_initializer: Initializer for the bias vector.
        kernel_regularizer: Regularizer function applied to the `kernel` weights
          matrix.
        bias_regularizer: Regularizer function applied to the bias vector.
        activity_regularizer: Regularizer function applied to the output of the
          layer (its "activation").
        kernel_constraint: Constraint function applied to the kernel matrix.
        bias_constraint: Constraint function applied to the bias vector.
        implementation: implementation mode, either `1`, `2`, or `3`. `1` loops
          over input spatial locations to perform the forward pass. It is
          memory-efficient but performs a lot of (small) ops.  `2` stores layer
          weights in a dense but sparsely-populated 2D matrix and implements the
          forward pass as a single matrix-multiply. It uses a lot of RAM but
          performs few (large) ops.  `3` stores layer weights in a sparse tensor
          and implements the forward pass as a single sparse matrix-multiply.
            How to choose:
            `1`: large, dense models,
            `2`: small models,
            `3`: large, sparse models,  where "large" stands for large
              input/output activations (i.e. many `filters`, `input_filters`,
              large `np.prod(input_size)`, `np.prod(output_size)`), and "sparse"
              stands for few connections between inputs and outputs, i.e. small
              ratio `filters * input_filters * np.prod(kernel_size) /
              (np.prod(input_size) * np.prod(strides))`, where inputs to and
              outputs of the layer are assumed to have shapes `input_size +
              (input_filters,)`, `output_size + (filters,)` respectively. It is
              recommended to benchmark each in the setting of interest to pick
              the most efficient one (in terms of speed and memory usage).
              Correct choice of implementation can lead to dramatic speed
              improvements (e.g. 50X), potentially at the expense of RAM. Also,
              only `padding="valid"` is supported by `implementation=1`.
    Input shape:
        4D tensor with shape: `(samples, channels, rows, cols)` if
          data_format='channels_first'
        or 4D tensor with shape: `(samples, rows, cols, channels)` if
          data_format='channels_last'.
    Output shape:
        4D tensor with shape: `(samples, filters, new_rows, new_cols)` if
          data_format='channels_first'
        or 4D tensor with shape: `(samples, new_rows, new_cols, filters)` if
          data_format='channels_last'. `rows` and `cols` values might have
          changed due to padding.
       r   validNTglorot_uniformzerosr   c                    s   t  jdi | || _t|dd| _tj|dddd| _t|| _| jdkr3|dkr3t	d| t
|| _t|| _|| _t|| _t|	| _t|
| _t|| _t|| _t|| _t|| _|| _td	d
| _d S )N   kernel_sizestridesT)
allow_zeror   r   z_Invalid border mode for LocallyConnected2D (only "valid" is supported if implementation is 1):    )ndim )super__init__filtersr
   normalize_tupler   r   normalize_paddingpadding
ValueErrornormalize_data_formatdata_formatr   get
activationuse_biasr   kernel_initializerbias_initializerr   kernel_regularizerbias_regularizeractivity_regularizerr   kernel_constraintbias_constraintimplementationr   
input_spec)selfr   r   r   r   r"   r$   r%   r&   r'   r(   r)   r*   r+   r,   r-   kwargs	__class__r   e/var/www/myenv/lib/python3.10/site-packages/keras/src/layers/locally_connected/locally_connected2d.pyr      s6   zLocallyConnected2D.__init__c                 C   s   dS )NFr   )r/   r   r   r3   !_use_input_spec_as_call_signature   s   z4LocallyConnected2D._use_input_spec_as_call_signaturec              
   C   s  | j dkr|dd \}}|d }n|dd  \}}|d }|d u s&|d u r.tdt| t|| jd | j| jd }t|| jd | j| jd }|| _|| _	| jdks\| j	dkrhtd| j
 d	| d
| jdkr|| | jd | jd  | | jf| _| j| j| jd| j| jd| _n| jdkr| j dkr|||| j| j| j	f| _n|||| j| j	| jf| _| j| j| jd| j| jd| _tj||f| j| j| j| j d| _nF| jdkr| j| j	 | j || | f| _ttj||f| j| j| j|| j| j d| _| jt| jf| jd| j| jd| _ntd| j | jr1| j||| jf| jd| j| jd| _nd | _| j dkrDtdd|id| _ n	tdd|id| _ d| _!d S )Nchannels_lastr      r   zThe spatial dimensions of the inputs to  a LocallyConnected2D layer should be fully-defined, but layer received the inputs shape r   zCOne of the dimensions in the output is <= 0 due to downsampling in z;. Consider increasing the input size. Received input shape zO which would produce output shape with a zero or negative value in a dimension.kernel)shapeinitializernameregularizer
constraintchannels_first)input_shapekernel_shaper   r   r"   )r?   r@   r   r   
filters_infilters_outr"   %Unrecognized implementation mode: %d.biasr   )r   axesT)"r"   r    strr
   conv_output_lengthr   r   r   
output_row
output_colr;   r-   r   r@   
add_weightr&   r(   r+   r8   r	   get_locallyconnected_maskkernel_masksortedconv_kernel_idxskernel_idxslenr%   r'   r)   r,   rD   r   r.   built)r/   r?   	input_row	input_colinput_filterrH   rI   r   r   r3   build   s   


	



		



	


zLocallyConnected2D.buildc                 C   s   | j dkr|d }|d }n| j dkr|d }|d }t|| jd | j| jd }t|| jd | j| jd }| j dkrG|d | j||fS | j dkrU|d ||| jfS d S )Nr>   r   r7   r5   r   r   )r"   r
   rG   r   r   r   r   )r/   r?   rowscolsr   r   r3   compute_output_shape9  s"   




z'LocallyConnected2D.compute_output_shapec              	   C   s   | j dkrt|| j| j| j| j| jf| j}n1| j dkr,t	
|| j| j| |j}n| j dkrBt	|| j| j| j| |j}ntd| j  | jrVtj|| j| jd}| |}|S )Nr   r   r7   rC   )r"   )r-   r   
local_convr8   r   r   rH   rI   r"   r	   local_conv_matmulrL   rX   r9   local_conv_sparse_matmulrO   r@   r    r%   bias_addrD   r$   )r/   inputsoutputr   r   r3   callN  sB   


	


	

zLocallyConnected2D.callc                    s   | j | j| j| j| jt| j| jt	| j
t	| jt| jt| jt| jt| jt| j| jd}t  }tt| t|  S )N)r   r   r   r   r"   r$   r%   r&   r'   r(   r)   r*   r+   r,   r-   )r   r   r   r   r"   r   	serializer$   r%   r   r&   r'   r   r(   r)   r*   r   r+   r,   r-   r   
get_configdictlistitems)r/   configbase_configr1   r   r3   ra   w  s0   





zLocallyConnected2D.get_config)r   r   NNTr   r   NNNNNr   )__name__
__module____qualname____doc__r   propertyr4   r   shape_type_conversionrU   rX   r_   ra   __classcell__r   r   r1   r3   r   !   s2    b.

 
)r   N)rj   	keras.srcr   r   r   r   r   keras.src.engine.base_layerr   keras.src.engine.input_specr   "keras.src.layers.locally_connectedr	   keras.src.utilsr
   r    tensorflow.python.util.tf_exportr   r   r   r   r   r3   <module>   s   