Mu Hd
Results
1
comments of
Mu Hd
> ## Example > ``` > opts = argparse.Namespace(**{"model.freeze_modules": "conv1"}) > > > model = nn.Sequential( > OrderedDict([ > ('conv1', nn.Conv2d(20,64,5)), > ('conv2', nn.Conv2d(20,64,5)) > ]) > ) > >...