Set up distributed training with BOINC AI Accelerate
Last updated
Last updated
As models get bigger, parallelism has emerged as a strategy for training larger models on limited hardware and accelerating training speed by several orders of magnitude. At BOINC AI, we created the🌎 library to help users easily train a 🌎Transformers model on any type of distributed setup, whether it is multiple GPU’s on one machine or multiple GPU’s across several machines. In this tutorial, learn how to customize your native PyTorch training loop to enable training in a distributed environment.
Get started by installing 🌎Accelerate:
Copied
Then import and create an object. The will automatically detect your type of distributed setup and initialize all the necessary components for training. You don’t need to explicitly place your model on a device.
Copied
The next step is to pass all the relevant training objects to the method. This includes your training and evaluation DataLoaders, a model and an optimizer:
Copied
Copied
As you can see in the following code, you only need to add four additional lines of code to your training loop to enable distributed training!
Copied
Once you’ve added the relevant lines of code, launch your training in a script or a notebook like Colaboratory.
If you are running your training from a script, run the following command to create and save a configuration file:
Copied
Then launch your training with:
Copied
Copied
The last addition is to replace the typical loss.backward()
in your training loop with 🌎 Accelerate’s method:
🌎Accelerate can also run in a notebook if you’re planning on using Colaboratory’s TPUs. Wrap all the code responsible for training in a function, and pass it to :
For more information about 🌎 Accelerate and its rich features, refer to the .