Compose transforms are used to prepare data before training a model. The key metric to check here is data consistency and correctness. This means the transformed data should still represent the original information well, without errors or distortions.
For example, if you normalize images, the pixel values should be scaled correctly. If you flip or crop images, the labels should still match the content. So, metrics like data integrity checks or visual inspection are important.
In practice, after applying Compose transforms, you want to see if your model's training loss decreases and accuracy improves. This shows the transforms help the model learn better.