Remove the docs for passing strategy args to accelerator (#15636)
This commit is contained in:
parent
2f0c0396b8
commit
164e5a7b3e
|
@ -262,9 +262,6 @@ Example::
|
|||
# Training with GPU Accelerator using total number of gpus available on the system
|
||||
Trainer(accelerator="gpu")
|
||||
|
||||
.. warning:: Passing training strategies (e.g., ``"ddp"``) to ``accelerator`` has been deprecated in v1.5.0
|
||||
and will be removed in v1.7.0. Please use the ``strategy`` argument instead.
|
||||
|
||||
accumulate_grad_batches
|
||||
^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
|
|
|
@ -172,10 +172,6 @@ class Trainer:
|
|||
accelerator: Supports passing different accelerator types ("cpu", "gpu", "tpu", "ipu", "hpu", "mps, "auto")
|
||||
as well as custom accelerator instances.
|
||||
|
||||
.. deprecated:: v1.5
|
||||
Passing training strategies (e.g., 'ddp') to ``accelerator`` has been deprecated in v1.5.0
|
||||
and will be removed in v1.7.0. Please use the ``strategy`` argument instead.
|
||||
|
||||
accumulate_grad_batches: Accumulates grads every k batches or as set up in the dict.
|
||||
Default: ``None``.
|
||||
|
||||
|
|
Loading…
Reference in New Issue