(arch, growth_rate, block_config, num_init_features,
**kwargs)
| 223 | |
| 224 | |
| 225 | def _densenet(arch, growth_rate, block_config, num_init_features, |
| 226 | **kwargs): |
| 227 | model = DenseNet(growth_rate, block_config, num_init_features, **kwargs) |
| 228 | return model |
| 229 | |
| 230 | |
| 231 | def densenet121(**kwargs): |
no test coverage detected