This module allows the forward and backward passes of your neural net to be done in fp16 (also known as half precision). This is particularly important if you have an NVIDIA GPU with tensor cores, since it can speed up your training by 200% or more.
from fastai.gen_doc.nbdoc import *
from fastai.callbacks.fp16 import *
from fastai import *
from fastai.vision import *
To train your model in mixed precision you just have to call Learner.to_fp16
, which converts the model and modifies the existing Learner
to add MixedPrecision
.
show_doc(Learner.to_fp16)
For example:
path = untar_data(URLs.MNIST_SAMPLE)
data = ImageDataBunch.from_folder(path)
model = simple_cnn((3,16,16,2))
learn = Learner(data, model, metrics=[accuracy]).to_fp16()
learn.fit_one_cycle(1)
VBox(children=(HBox(children=(IntProgress(value=0, max=1), HTML(value='0.00% [0/1 00:00<00:00]'))), HTML(value…
Total time: 00:02 epoch train loss valid loss accuracy 1 0.172265 0.146274 0.947498 (00:02)
Details about mixed precision training are available in NVIDIA's documentation. We will just summarize the basics here.
The only parameter you may want to tweak is loss_scale
. This is used to scale the loss up, so that it doesn't underflow fp16, leading to loss of accuracy (this is reversed for the final gradient calculation after converting back to fp32). Generally the default 512
works well, however. You can also enable or disable the flattening of the master parameter tensor with flat_master=True
, however in our testing the different is negligible.
Internally, the callback ensures that all model parameters (except batchnorm layers, which require fp32) are converted to fp16, and an fp32 copy is also saved. The fp32 copy (the master
parameters) is what is used for actually updating with the optimizer; the fp16 parameters are used for calculating gradients. This helps avoid underflow with small learning rates.
All of this is implemented by the following Callback.
show_doc(MixedPrecision)
You don't have to call the following functions yourself - they're called by the callback framework automatically. They're just documented here so you can see exactly what the callback is doing.
show_doc(MixedPrecision.on_backward_begin)
on_backward_begin
[source]
on_backward_begin
(last_loss
:Rank0Tensor
,kwargs
:Any
) →Rank0Tensor
Scale gradients up by loss_scale
to prevent underflow.
show_doc(MixedPrecision.on_backward_end)
on_backward_end
[source]
on_backward_end
(kwargs
:Any
)
Convert the gradients back to FP32 and divide them by the scale.
show_doc(MixedPrecision.on_loss_begin)
on_loss_begin
[source]
on_loss_begin
(last_output
:Tensor
,kwargs
:Any
) →Tensor
Convert half precision output to FP32 to avoid reduction overflow.
show_doc(MixedPrecision.on_step_end)
show_doc(MixedPrecision.on_train_begin)
show_doc(MixedPrecision.on_train_end)
on_train_end
[source]
on_train_end
(kwargs
:Any
)
Remove half precision transforms added at on_train_begin
.