Need pretrained mobilenet v1 with less filters

Here I am giving keras syntax where by changing alpha value, I can change the width of network. Suppose I want 25% of my actual network so I will pass 0.25.

keras.applications.mobilenet.MobileNet(input_shape=None, alpha=0.25, depth_multiplier=1, dropout=1e-3, include_top=True, weights='imagenet', input_tensor=None, pooling=None, classes=1000)

Do we have pretrained models like this available from pytorch.?
I am looking out specifically for 25% width of network mobilenet v1.