Spaces:
Sleeping
Sleeping
Update inference_img.py
Browse files- inference_img.py +1 -1
inference_img.py
CHANGED
@@ -17,7 +17,7 @@ def main():
|
|
17 |
|
18 |
parser = argparse.ArgumentParser(description='Interpolation for a pair of images')
|
19 |
parser.add_argument('--img', dest='img', nargs=2, required=True)
|
20 |
-
parser.add_argument('--exp', default=
|
21 |
parser.add_argument('--ratio', default=0, type=float, help='inference ratio between two images with 0 - 1 range')
|
22 |
parser.add_argument('--rthreshold', default=0.02, type=float, help='returns image when actual ratio falls in given range threshold')
|
23 |
parser.add_argument('--rmaxcycles', default=8, type=int, help='limit max number of bisectional cycles')
|
|
|
17 |
|
18 |
parser = argparse.ArgumentParser(description='Interpolation for a pair of images')
|
19 |
parser.add_argument('--img', dest='img', nargs=2, required=True)
|
20 |
+
parser.add_argument('--exp', default=2, type=int)
|
21 |
parser.add_argument('--ratio', default=0, type=float, help='inference ratio between two images with 0 - 1 range')
|
22 |
parser.add_argument('--rthreshold', default=0.02, type=float, help='returns image when actual ratio falls in given range threshold')
|
23 |
parser.add_argument('--rmaxcycles', default=8, type=int, help='limit max number of bisectional cycles')
|