sweep.py [57:62]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
parser.add_argument('--use_true_visibility', default=False, action='store_true',
                    help="Use Jonas's visibility map, which is strictly more visible than reality. Default is strictly less visible")
parser.add_argument('--n_unit_thresh', default=0.1, type=float,
                    help="If model predicts > n_unit_thresh, round it to the next whole number")
parser.add_argument('--regr_slope_scalar', default=1.0, type=float,
                    help="If model predict K units, return K*regr_slope_scalar units")
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



utils.py [72:77]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    parser.add_argument('--use_true_visibility', default=False, action='store_true',
                        help="Use Jonas's visibility map, which is strictly more visible than reality. Default is strictly less visible")
    parser.add_argument('--n_unit_thresh', default=0.1, type=float,
                        help="If model predicts > n_unit_thresh, round it to the next whole number")
    parser.add_argument('--regr_slope_scalar', default=1.0, type=float,
                        help="If model predict K units, return K*regr_slope_scalar units")
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



