torchsig.models.model_utils.simple_models.simple_densenet

torchsig.models.model_utils.simple_models.simple_densenet(layer_width_list)[source]

takes in a list or tuple of dense layer widths and returns a sequential model with those widths used to quickly prototype simple feed-forward neural nets; for example, simple_densenet([6,8,32,64,64,1]) would return a model with fully-connected linear layers that takes in a vecor of length 6 and outputs a single value.