Nicolas Hug
Nicolas Hug
This function is called when loading every single sample, but its complexity is `O(num_classes)` because of the `.index()` call, which is probably overkill. A simple dict lookup should be enough...
This is just a dummy PR to see which jobs are green and which aren't (Useful to decide whether failures are related for newly-created PRs) Feel free to merge with...
Closes https://github.com/pytorch/vision/issues/6257 `git grep -n "0\.14" torchvision/` now gives zero output
Same as https://github.com/pytorch/vision/issues/6081 but for 0.13.1.
Related to https://github.com/pytorch/data/issues/416 This is the code I'm using to benchmark datapipes against our current dataset implementation on ImageNet. I'm just opening this PR to be able to share some...
This PR installs `dill` for the prototype CIs. Having `dill` installed in one's environement has shown to create (now fixed) issues in the past https://github.com/pytorch/pytorch/pull/74984. I'm just creating this PR...
I don't know if this is an actual issue or not, but it looks like the dylib relocation step of the macos wheel jobs are failing. For example [this recent...
In 0.12 we marked some APIs as deprecated, and to be removed in 0.14. Since 0.14 is the upcoming version, now is the time to remove them. I'll send a...
Passing lists to `njit`ted functions is [deprecated](http://numba.pydata.org/numba-doc/latest/reference/deprecation.html#deprecation-of-reflection-for-list-and-set-types) by numba and will soon stop being supported. `_update_raw_predictions` throws a deprecation warning now. I'm not sure what the workaround is. I opened...
The gradient and hessian update of the categorical crossentropy loss computes `p_k` k times, but it only needs to compute it once (see https://github.com/scikit-learn/scikit-learn/commit/9e68984f8066085bdf801ccd0b5edca968709b5f which led to serious improvement in...