def get_n_transformations()

in run_experiments_real.py [0:0]


def get_n_transformations(args):
    n_rotations, n_x_translations, n_y_translations = 0, 0, 0
    n_transformations = 9

    if args.transformation == "rotation":
        n_rotations = n_transformations
    if args.transformation == "shift_x":
        n_x_translations = n_transformations
    if args.transformation == "shift_y":
        n_y_translations = n_transformations
    return n_rotations, n_x_translations, n_y_translations