Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
aras committed Sep 20, 2019
1 parent 4c23d1e commit 0e819c6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions jaad_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -827,11 +827,11 @@ def get_detection_data(self, image_set, method, occlusion_type=None, file_path='
if method == 'frcnn':
return self._get_data_frcnn(ped_samples)
elif method == 'retinanet':
self._generate_csv_data_retinanet(image_set, file_path, ped_samples)
return self._generate_csv_data_retinanet(image_set, file_path, ped_samples)
elif method == 'yolo3':
self._generate_csv_data_yolo3(image_set, file_path, ped_samples)
return self._generate_csv_data_yolo3(image_set, file_path, ped_samples)
elif method == 'ssd':
self._generate_csv_data_ssd(image_set, file_path, ped_samples)
return self._generate_csv_data_ssd(image_set, file_path, ped_samples)

def _get_data_frcnn(self, ped_samples):
"""
Expand Down

0 comments on commit 0e819c6

Please sign in to comment.