MCPcopy Create free account
hub / github.com/Sirwenhao/Deep-Learning-Notes / densenet161

Function densenet161

CV/Pytorch_classification/DenseNet/model.py:169–175  ·  view source on GitHub ↗
(**kwargs: Any)

Source from the content-addressed store, hash-verified

167
168
169def densenet161(**kwargs: Any) -> DenseNet:
170 # Top-1 error: 22.35%
171 # 'densenet161': 'https://download.pytorch.org/models/densenet161-8d451a50.pth'
172 return DenseNet(growth_rate=48,
173 block_config=(6, 12, 36, 24),
174 num_init_features=96,
175 **kwargs)
176
177
178

Callers

nothing calls this directly

Calls 1

DenseNetClass · 0.85

Tested by

no test coverage detected