PatchEmbedding constructor
Implementation
PatchEmbedding({
required this.patchSize,
required this.inChannels,
required this.embedDim,
}) : projection =
Layer.fromNeurons(patchSize * patchSize * inChannels, embedDim),
norm = LayerNorm(embedDim);