Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bugfix: do_detect gets 4 or 5 arg, but receives 6 #547

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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