-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
fix segmentation testing and support CPU #888
base: master
Are you sure you want to change the base?
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -68,14 +68,14 @@ def test(args): | |
im_paths = dsts | ||
predicts = evaluator.parallel_forward(data) | ||
for predict, impath in zip(predicts, im_paths): | ||
predict = mx.nd.squeeze(mx.nd.argmax(predict[0], 1)).asnumpy() + \ | ||
predict = mx.nd.squeeze(mx.nd.argmax(predict[0], 0)).asnumpy() + \ | ||
testset.pred_offset | ||
mask = get_color_pallete(predict, args.dataset) | ||
outname = os.path.splitext(impath)[0] + '.png' | ||
mask.save(os.path.join(outdir, outname)) | ||
|
||
if __name__ == "__main__": | ||
args = parse_args() | ||
args.test_batch_size = args.ngpus | ||
args.test_batch_size = max(1, args.ngpus) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just want to know why There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thank you for the review! I have removed this line, and I will update the code later. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thank you for the review! I have removed this line, and I will update the code later. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't know why the program gets stuck. I will check it later. |
||
print('Testing model: ', args.resume) | ||
test(args) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Following the standard practice, we use the first dimension as Batch dimension by default. Could you please still use dim=1.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed it. : )