Randomly Select Data Transforms

Is there a way to randomly select one of many data transforms instead of applying all of them sequentially?

For example,

tfms=([ brightness(change=(0.40, 0.60), p=0.7), zoom(scale=(0.8, 1.2), p=0.7),
        cutout(n_holes=(1,15), length=(5,15), p=0.7), crop(size=256)], 
        [crop(size=256)])

I would like the training routine to choose between brightness change, zoom and cutout for each image. Applying all 3 transforms at once changes the nature of my train set and hence it doesn’t do as well on unseen data.