Spaces:
Sleeping
Sleeping
Prepare to accelerate | |
The next step is to pass all the relevant training objects to the [~accelerate.Accelerator.prepare] method. This includes your training and evaluation DataLoaders, a model and an optimizer: | |
train_dataloader, eval_dataloader, model, optimizer = accelerator.prepare( | |
train_dataloader, eval_dataloader, model, optimizer | |
) |