Synopsis / amalgam

Extensions for the `fastai2` library in the form of data augmentations and inference utilities. Specific to computer vision models. Inference utilities are built with a focus on single-label (softmax) classifiers.
https://synopsis.video/fastai2_extensions//
Apache License 2.0
48 stars 5 forks source link

Fix to cuda functions on new Pytorch #5

Open lluissalord opened 3 years ago

lluissalord commented 3 years ago

In recent versions of Pytorch the to_cuda function used here was not working as it should and there were some issues with device calculations. Hence, here it is proposed to change to_cuda function with directly setting model and x to cuda if available.

PD: Several formatting changes are done here automatically by black package but they are not changing the funtionality of the code.