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

Function densenet169

Image_Classification/src/models/densenet.py:253–261  ·  view source on GitHub ↗

r"""Densenet-169 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

251
252
253def densenet169(**kwargs):
254 r"""Densenet-169 model from
255 `"Densely Connected Convolutional Networks" <https://arxiv.org/pdf/1608.06993.pdf>`_
256
257 Args:
258 memory_efficient (bool) - If True, uses checkpointing. Much more memory efficient,
259 but slower. Default: *False*. See `"paper" <https://arxiv.org/pdf/1707.06990.pdf>`_
260 """
261 return _densenet('densenet169', 32, (6, 12, 32, 32), 64, **kwargs)
262
263
264def densenet201(**kwargs):

Callers 1

get_networkFunction · 0.90

Calls 1

_densenetFunction · 0.85

Tested by

no test coverage detected