Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions flowmap/third_party/gmflow/evaluate.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ def validate_things(model,
corr_radius_list=False,
prop_radius_list=False,
):
""" Peform validation using the Things (test) split """
""" Perform validation using the Things (test) split """
model.eval()
results = {}

Expand Down Expand Up @@ -293,7 +293,7 @@ def validate_sintel(model,
corr_radius_list=False,
prop_radius_list=False,
):
""" Peform validation using the Sintel (train) split """
""" Perform validation using the Sintel (train) split """
model.eval()
results = {}

Expand Down Expand Up @@ -437,7 +437,7 @@ def validate_kitti(model,
corr_radius_list=False,
prop_radius_list=False,
):
""" Peform validation using the KITTI-2015 (train) split """
""" Perform validation using the KITTI-2015 (train) split """
model.eval()

val_dataset = data.KITTI(split='training')
Expand Down