tgandor
tgandor
I don't know if this is the right way, but I prepared a PR which works for me: https://github.com/althonos/InstaLooter/pull/248 Maybe rhx_gis is not needed anymore, and the code could be...
There are use cases involving scripted / programmatic usage and ad-hoc command line usage. A compact, intuitive CLI can be helped by some conventions, like the one discussed - with...
@Krever crazy idea indeed. I think you should write your own `%%cell_magic` which would know if it should execute or not. (Save progress outside the notebook)
I see it was discussed here already: https://github.com/nteract/papermill/issues/405 Redirecting to `/dev/null`, or `NUL` in particular has some downsides - for example when I do something like: ``` C:\> my_wrapper.bat papermill...
Have you tried symlinking individual images instead of a directory? This is a configuration which works for me. Like: `$ cd /var/www/html/gallery/gallery-images` `$ ln -s /media/me/real/path/to/images/*.jpg .` The symlinks weigh...
We started working on a publication, and will get back here (as well as updating the README about it), when we have a BibTeX entry ;)
Interesting. I'm completely new to `headless.py`, but it looks like, when `diff` contains numpy arrays, it can fail. In a different project we used: https://pypi.org/project/msgpack-numpy/ ... for "transporting" ndarrays over...
About missing `k3dRefresh()` problem I have no idea ;) @artur-trzesiok ? BTW, @MironLeon, if you could provide min working examples where these things happen, it may help us track this...
I think it's a trade-off. Plus side: different objects overlapping or 'entangled' can be let through. Minus side: false positives for weaker classes on the same object (like in YOLO3...
@iiroka - Exaclty! Here's the snippet from parser.c in Darknet: int major = 0; int minor = 2; int revision = 0; fwrite(&major, sizeof(int), 1, fp); fwrite(&minor, sizeof(int), 1, fp);...