Skip to main content
. 2022 Nov 4;22(21):8515. doi: 10.3390/s22218515
Algorithm 1: CNN algorithm for PV fault detection.
  1. Input: [X,y]; label raw data.

  2. Preprocessing: normalization and resampling

  3. Convolution layer: CL←[X,y] raw data sent to the CNN for feature extraction

    F: feature vector (feature map) extracted from convolution layer

  4. Pooling layer: MaxPool←F;[X,y] downsampling feature map with MaxPool FD; downsampled feature vector or feature map

  5. Flatten layer:FLFD; change dimension of FD

    FL: flatten feature map

  6. Fully connected layer:FCFL; compute more advanced features and give probability values of each class

    P: probabilities of all the classes

  7. Output: classifies the test data