Conversation
Use `numpy.linalg.pinv` instead of `numpy.linalg.inv` to avoid "singular matrix" errors. Upgrade `numpy` in `Dockerfile` to avoid "hanging" during computation of pseudo-inverse. Fixes #7
|
@arthurduf, please take a look at this. I suggest pulling the branch and testing. |
|
All good for me |
|
Just a heads up that Is this what we want? |
Generally speaking, as long as this has the intended effect of consuming resources, I'd say this is fine. The actual computation is not what we care about, is it? Unless this particular calculation is going to cause the larger bboxes to take inordinately long (hours?) to complete, this should be fine, no? |
Use
numpy.linalg.pinvinstead ofnumpy.linalg.invto avoid "singular matrix" errors.Upgrade
numpyinDockerfileto avoid "hanging" during computation of pseudo-inverse.Fixes #7