dblalock
dblalock
At present, Bolt's python code doesn't appear to be building on Ubuntu and hasn't been tested on Windows. It may also have issues building on other systems.
At present, Bolt is only implemented for x86 machines with AVX2 instructions. Adding support for other architectures would entail reimplementing the code in bolt.hpp and adding #ifdefs to select the...
Because it's 2017 and I should really have support for this. Should be very little work since the Python footprint is pretty small. We might support this already, in fact.
At present, Bolt is only implemented for x86 machines with AVX2 instructions.
Addresses [CO-789](https://mosaicml.atlassian.net/browse/CO-789) and [CO-794](https://mosaicml.atlassian.net/browse/CO-794). However, we'll need two follow-up changes: - Since our notebooks use hardcoded URLs as docs links, we'll need another PR to un-break all these links. -...
Fixes [CO-883](https://mosaicml.atlassian.net/browse/CO-883) using a `type: ignore` as suggested by @hanlint.
This is a (minor) API consistency problem. Right now {augmix, randaug, colout} have {AugmentAndMixTransform, ColOutTransform, RandAugmentTransform}, while cutout does not have a torchvision-compatible transform at all. We should either ensure...