We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Last line of darknet.py function which is 'print r'
if __name__ == "__main__": #net = load_net("cfg/densenet201.cfg", "/home/pjreddie/trained/densenet201.weights", 0) #im = load_image("data/wolf.jpg", 0, 0) #meta = load_meta("cfg/imagenet1k.data") #r = classify(net, meta, im) #print r[:10] net = load_net("cfg/tiny-yolo.cfg", "tiny-yolo.weights", 0) meta = load_meta("cfg/coco.data") r = detect(net, meta, "data/dog.jpg") print r
Is a syntax error for python3. It need to be print(r) to fix the error.
The text was updated successfully, but these errors were encountered:
82dbabd
Merge pull request #2526 from Alperencode/master
b1ab3da
Closes #2525
@AlexeyAB why did Closed?
Sorry, something went wrong.
@Broham why did Closed?
@Broham When this happend??
@Alperencode When this happend??
Closes pjreddie#2525
4ab6d71
No branches or pull requests
Last line of darknet.py function which is 'print r'
Is a syntax error for python3. It need to be print(r) to fix the error.
The text was updated successfully, but these errors were encountered: