Lukas Geiger
Lukas Geiger
We also started trying out BinaryDenseNets and the first results seam promising. @LaVieEnRoseSMZ To which supplementary materials are you referring to? It doesn't seam like they are included in the...
Thanks. That's helpful 👍
Thanks for sharing all the details and the supplementary materials. We were able to reproduce your experiments (which unfortunately isn't the case with many other papers) 👍 @LaVieEnRoseSMZ If you...
> Is this signed URLs approach something that could come to PyPI cloud in the future? It looks like [for downloading](https://github.com/stevearc/pypicloud/blob/1e774a1581d7e5e4d213e0d0037086c754b1c820/pypicloud/storage/object_store.py#L111-L112) pypicloud already [uses signed URLs](https://github.com/stevearc/pypicloud/blob/1e774a1581d7e5e4d213e0d0037086c754b1c820/pypicloud/storage/gcs.py#L177-L194) which could in theory...
Interesting idea! 👍 Would the following install script work for you? ```json "scripts": { "install": "prebuild-install || (npm install nan && node-gyp rebuild)" } ``` This way `prebuild-install` will remain...
`npm` also supports a syntax like `npm install nan@^2.4.0 node-ninja@^1.0.0` which is versioned and for me not much bulkier than implementing `buildDependencies`.
> When I said "versioned" I mean "automatic versioned", it's said, dependencies could be check and updated using node-check-updates and similar tools. Ooh I see, that wouldn't work. Though one...
It would be also great to integrate those with future Keras Tuner API: https://github.com/keras-team/keras-tuner/blob/master/kerastuner/applications/resnet.py
Thanks for catching it. Hmm this should prevent running the publish action on tags that don't start with `v` https://github.com/larq/zoo/blob/31d5b47e89167866349ea919534afa26149ff2a2/.github/workflows/publish.yml#L7 Looks like #131 introduced this regression.
We use [TensorFlow Datasets](https://www.tensorflow.org/datasets) for preparing the ImageNet dataset. If I recall correctly they used to be downloaded automatically. Recently Tensorflow Datasets switched to allow to use already downloaded tar...