The wider model
// The last conv layer cannot be widen since wider operator cannot be done over the two sides of flatten.
conv_layers = list(filter(lambda x: is_conv_layer(x), graph.layer_list))[:-1]
// The first layer cannot be widen since widen operator cannot be done over the two sides of flatten.// The last layer is softmax, which also cannot be widen.
dense_layers = list(filter(lambda x: is_dense_layer(x), graph.layer_list))[1:-1]