You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: visualize_dataset.py
+4-11
Original file line number
Diff line number
Diff line change
@@ -25,13 +25,6 @@ def parse_arguments(args):
25
25
parser.add_argument("--frame_list",nargs="*", type=int, default= [0,1], help="List of frames to be included")
26
26
parser.add_argument("--types_list",nargs="*", type=str, default= ["colour", "depth","silhouette","normal"], help="List of different modalities to be loaded")
27
27
28
-
# other
29
-
parser.add_argument('-n','--name', type=str, default='default_name', help='The name of this train/test. Used when storing information.')
30
-
31
-
parser.add_argument("--visdom", type=str, nargs='?', default="localhost", const="127.0.0.1", help="Visdom server IP (port defaults to 8097)")
32
-
parser.add_argument("--visdom_iters", type=int, default=400, help="Iteration interval that results will be reported at the visdom server for visualization.")
33
-
parser.add_argument("--seed", type=int, default=1337, help="Fixed manual seed, zero means no seeding.")
34
-
35
28
36
29
returnparser.parse_known_args(args)
37
30
@@ -56,10 +49,10 @@ def parse_arguments(args):
56
49
#TODO: add a visualisation script to be added in the UAVA dataset
0 commit comments