How to load specific weigth for a specific layer

For example : I use vgg16,but I do not wangt use this :
nn.Sequential(*list(models.vgg16(pretrained=True)))
It will load fully connection layer in computer memory,so I only want load conv layer
.How can I do?