change --opt arg
Browse files
app.py
CHANGED
@@ -55,7 +55,9 @@ original_frame_list = []
|
|
55 |
mask_list = []
|
56 |
|
57 |
parser = argparse.ArgumentParser()
|
58 |
-
parser.add_argument('--opt', default='configs/object_removal.yaml',
|
|
|
|
|
59 |
help='Please select your config file for inference')
|
60 |
# video completion
|
61 |
parser.add_argument('--mode', default='object_removal', choices=[
|
|
|
55 |
mask_list = []
|
56 |
|
57 |
parser = argparse.ArgumentParser()
|
58 |
+
# parser.add_argument('--opt', default='configs/object_removal.yaml',
|
59 |
+
# help='Please select your config file for inference')
|
60 |
+
parser.add_argument('--opt', default=os.path.abspath(join(project_name, 'FGT_codes', 'tool','configs','object_removal.yaml')),
|
61 |
help='Please select your config file for inference')
|
62 |
# video completion
|
63 |
parser.add_argument('--mode', default='object_removal', choices=[
|