[docs]def__init__(self,channel_factors:List[int]=(4,8,16,32),kernel_size:int=3)->None:"""Constructor of MultiCoilReducer Class. This class takes every coil independently (treats them like a sub-fraction of a batch), increases the channel size massively (from 2 initial channels for complex k-space data) via several convolutional layers and then averages those channels over the coil dimension. Averaging is invariant to permutations of the input order, so the coil order or the number of coils will not matter anymore. Inspiration was drawn from point cloud processing [1]_, see below. .. [1] Qi et al., PointNet: Deep Learning on Point Sets for 3D Classification and Segmentation, 2017 Parameters ---------- channel_factors sequence that includes all factors for channel increases kernel_size kernel size for conv layers """super().__init__()layers=[MultiCoilConv2d(in_channels=2*i,out_channels=2(i+1),kernel_size=kernel_size,padding="same")foriinchannel_factors]