MCPcopy Create free account
hub / github.com/AtlasAnalyticsLab/AdaFisher / densenet161

Function densenet161

Image_Classification/src/models/densenet.py:242–250  ·  view source on GitHub ↗

r"""Densenet-161 model from `"Densely Connected Convolutional Networks" `_ Args: memory_efficient (bool) - If True, uses checkpointing. Much more memory efficient, but slower. Default: *False*. See `"paper" <https://arxiv.org/pdf/1707.

(**kwargs)

Source from the content-addressed store, hash-verified

240
241
242def densenet161(**kwargs):
243 r"""Densenet-161 model from
244 `"Densely Connected Convolutional Networks" <https://arxiv.org/pdf/1608.06993.pdf>`_
245
246 Args:
247 memory_efficient (bool) - If True, uses checkpointing. Much more memory efficient,
248 but slower. Default: *False*. See `"paper" <https://arxiv.org/pdf/1707.06990.pdf>`_
249 """
250 return _densenet('densenet161', 48, (6, 12, 36, 24), 96, **kwargs)
251
252
253def densenet169(**kwargs):

Callers 1

get_networkFunction · 0.90

Calls 1

_densenetFunction · 0.85

Tested by

no test coverage detected