Skip to content
Open
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
4 changes: 2 additions & 2 deletions evaluate_on_coco.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ def test(model, annotations, cfg):

# do one forward pass first to circumvent cold start
throwaway_image = Image.open('data/dog.jpg').convert('RGB').resize((model.width, model.height))
do_detect(model, throwaway_image, 0.5, 80, 0.4, use_cuda)
do_detect(model, throwaway_image, 0.5, 0.4, use_cuda)
boxes_json = []

for i, image_annotation in enumerate(images):
Expand All @@ -190,7 +190,7 @@ def test(model, annotations, cfg):
model.cuda()

start = time.time()
boxes = do_detect(model, sized, 0.0, 80, 0.4, use_cuda)
boxes = do_detect(model, sized, 0.0, 0.4, use_cuda)
finish = time.time()
if type(boxes) == list:
for box in boxes:
Expand Down