pub type SubPolicy = ((AugOp, f32, usize), (AugOp, f32, usize));Expand description
AutoAugment sub-policy: two sequential operations each with a probability and discrete magnitude level.
Each element is (op, probability, magnitude_level). Probability is in
[0.0, 1.0]; magnitude level is an integer in [0, 10] (AutoAugment
convention) and is internally remapped to the 0–30 RandAugment magnitude
scale before being passed to apply_aug_op.