danfeiX / scene-graph-TF-release

"Scene Graph Generation by Iterative Message Passing" code repository
http://cs.stanford.edu/~danfei/scene-graph/
MIT License
425 stars 130 forks source link

==None should be is None #5

Closed huang-yuefeng closed 7 years ago

huang-yuefeng commented 7 years ago

in lib/datasets/viz.py 76 lines "if inds == None": should be fixed to be: "if inds is None" == None sometimes will make error, program will shut down.

danfeiX commented 7 years ago

Fixed. Thanks for the bug report!