Paul Wais

Results 61 comments of Paul Wais

Agree that selenium is a heavy requirement, but the links seem to expire from time to time nonetheless. I was able to download using `wget --continue` which was handy because...

@davnov134 Thanks for the recent fix. I still can't download the whole dataset though :( It will eventually time out, and the download script doesn't allow resumes (it tends to...

I ran into this same error inside a 20.04-based docker image. I have `pymeshlab==2022.2.post2` which is the latest release at time of writing. @alemuntoni maybe `pymeshlab` could hide the QT...

@jonbarron In the future might your team please consider evaluating on datasets that have ground truth poses / geometry? E.g. DTU or ETH3D would be easy here. Google clearly has...

could this rather be done as a plugin as in the dn-splatter implementation? https://github.com/maturk/dn-splatter

Suggestion: plotly static plots can be pretty easily rendered and exported as HTML. If tensorboard had an HTML summary feature that could work (and for more than just plotly ...).

I landed here trying to search around for the same thing as the original poster. for the lazyweb, there's now the fastai blogging template that supports automatically converting jupyter notebooks...

fwiw i ended up just Save Notebook as HTML from the jupyter WebUI and I embed the thing as an iframe in a blog post. here's an example https://pwais.github.io/oarph-oarphs/2023/01/21/hist-with-examples.html in...

For C++ -> Java: If the Java method returns an `nio.ByteBuffer` via `NewDirectByteBuffer()`, the JVM won't free the underlying C++-allocated buffer when the `nio.ByteBuffer` gets GC'ed. Djinni would probably need...

Another issue not yet discussed for Java C++ is that Java ByteBuffers are by default Big Endian and ObjC/C++ users typically expects Little Endian data. This is mostly a user-facing...