MCPcopy Create free account
hub / github.com/OpenDriveLab/ReSim / Normalize3D

Function Normalize3D

sat/vae_modules/cp_enc_dec.py:513–528  ·  view source on GitHub ↗
(
    in_channels,
    zq_ch,
    add_conv,
    gather=False,
)

Source from the content-addressed store, hash-verified

511
512
513def Normalize3D(
514 in_channels,
515 zq_ch,
516 add_conv,
517 gather=False,
518):
519 return SpatialNorm3D(
520 in_channels,
521 zq_ch,
522 gather=gather,
523 freeze_norm_layer=False,
524 add_conv=add_conv,
525 num_groups=32,
526 eps=1e-6,
527 affine=True,
528 )
529
530
531class Upsample3D(nn.Module):

Callers 1

__init__Method · 0.70

Calls 1

SpatialNorm3DClass · 0.70

Tested by

no test coverage detected