weichen582 / Unsupervised-Visual-Recognition-by-Solving-Arbitrary-Puzzles

Tensorflow implementation for this paper.
MIT License
22 stars 2 forks source link

how did you deal with hungarian.so? #1

Open rubykarma opened 5 years ago

rubykarma commented 5 years ago

I get an error about hungarian.so, as follows: /tmp/work/munkres/hungarian.so: cannot open shared object file: No such file or directory I have googled it ,but didn't get much solution. I will be so glad if you can solve it for me. Thank you.

weichen582 commented 5 years ago

Hi, sorry for the late reply.

hungarian.so is an op library for TensorFlow, which can fast solve the max-cost max-matching problem by the Hungarian algorithm. The implementation is borrowed from this repo. You can compile the lib following the instructions in this repo. Thanks for reminding me this problem.