Frédéric Devernay
Frédéric Devernay
@schuhschuh 's suggestion helps, but I also had the same issue because I had more than 30 labels, and all items are paginated, see: - https://developer.github.com/v3/#pagination - https://developer.github.com/v3/guides/traversing-with-pagination/ Since I...
The fix is basically this diff: https://github.com/macports/macports-ports/blob/master/aqua/qt4-mac/files/patch-qt4-contentsformat.diff
I don't own this repo, so: no.
Actually, the original code was: ``` LIBADD=`echo $LIBADD` ``` and it was a Bourne shell (I was in the middle of converting it to bash). Do you agree that in...
I forgot to mention that since then I have already switched to using arrays as you suggest, but arrays are not Bourne shell. And I forgot to thank all the...
- shouldn't we also rename `USE_CBLAS` to `USE_BLAS`? - do all cblas implementations also propose a FORTRAN API? If not, then maybe it should be an option to use either...
Take a look at the difference with the reference file https://github.com/devernay/cminpack/blob/master/examples/ref/tlmdifc.ref . In this case, the second and third column of the cov matrix are *slightly* different. I've seen floating...
m >> n works very well in practice. The Levenberg-Marquardt algorithm was used a lot for camera calibration and bundle adjustment, where m=2 times`number_of_points` times `number_of_cameras` and n=3 times `number_of_points`...
are your residuals derivable? this is important that all residuals are C1 for LM. For example, you cannot optimize abs(x) by passing sqrt(abs(x)) to LM. Are you sure scipy uses...
which function from scipy are you using?