5cde6c452a2dd04bf9359d5f9b5418fc74131b39,test.py,,parse_args,#,19

Before Change


                      required=True,
                      help="List of images to upsample")

  parser.add_argument("-s","--upscale-factor",type=int,
                      default=config.defaults.max_scale,
                      help="Upscaling factor.")

  parser.add_argument("-o", "--output-dir",type=str,
                      default=None,
                      help="Output folder.")

After Change


        required=True,
        help="List of images to upsample")

    parser.add_argument(
        "-t",
        "--target",
        type=str,
        nargs="+",
        required=False,
        default=[],
        help="List of images to upsample")

    parser.add_argument(
        "-e", "--eval", action="store_true", help="List of images to upsample")
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 3

Instances


Project Name: fperazzi/proSR
Commit Name: 5cde6c452a2dd04bf9359d5f9b5418fc74131b39
Time: 2018-07-26
Author: fperazzi@adobe.com
File Name: test.py
Class Name:
Method Name: parse_args


Project Name: erikbern/ann-benchmarks
Commit Name: 3bf07f41715a8cfe64b4c7c7bfdaa46027b2892b
Time: 2021-01-10
Author: thomas@ahle.dk
File Name: plot.py
Class Name:
Method Name:


Project Name: fperazzi/proSR
Commit Name: 37f6f746957736446912e44fc06415d40dbce55a
Time: 2018-07-31
Author: yifanwang2010@gmail.com
File Name: test.py
Class Name:
Method Name: parse_args