Conv2DLayer constructor

Conv2DLayer(
  1. int outChannels,
  2. int kernelSize, {
  3. String padding = 'valid',
  4. ActivationFunction? activation,
})

Implementation

Conv2DLayer(
    this.outChannels,
    this.kernelSize, {
      this.padding = 'valid',
      this.activation,
    });