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

Function densenet121

Image_Classification/src/models/densenet.py:231–239  ·  view source on GitHub ↗

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

229
230
231def densenet121(**kwargs):
232 r"""Densenet-121 model from
233 `"Densely Connected Convolutional Networks" <https://arxiv.org/pdf/1608.06993.pdf>`_
234
235 Args:
236 memory_efficient (bool) - If True, uses checkpointing. Much more memory efficient,
237 but slower. Default: *False*. See `"paper" <https://arxiv.org/pdf/1707.06990.pdf>`_
238 """
239 return _densenet('densenet121', 32, (6, 12, 24, 16), 64, **kwargs)
240
241
242def densenet161(**kwargs):

Callers 2

get_pretrained_modelMethod · 0.90
get_networkFunction · 0.90

Calls 1

_densenetFunction · 0.85

Tested by

no test coverage detected