-
Notifications
You must be signed in to change notification settings - Fork 18
/
constants.py
9 lines (9 loc) · 905 Bytes
/
constants.py
1
2
3
4
5
6
7
8
9
base_dir_detections_fd = './data/your_dataset/base_dir_detections_fd' # Directory that contains detections by fine level detector
base_dir_detections_cd = './data/your_dataset/base_dir_detections_cd' # Directory that contains detections by coarse level detector
base_dir_groundtruth = './data/your_dataset/base_dir_groundtruth' # Directory that contains ground truth bounding boxes
base_dir_metric_fd = './data/your_dataset/base_dir_metric_fd' # Directory that contains AP or AR values by the fine detector
base_dir_metric_cd = './data/your_dataset/base_dir_metric_cd' # Directory that contains AP or AR values by the coarse detector
num_actions = 9 # Hyperparameter, should be equal to num_windows * num_windows
num_windows = 3 # Number of windows in one dimension
img_size_fd = 320 # Image size used to train the fine level detector
img_size_cd = 64 # Image size used to train the coarse level detector