Bases: StrEnum
Supported distributed training frameworks.
Source Code
View on GitHub
Source code in src/kedro_azureml_pipeline/distributed/config.py
| class Framework(StrEnum):
"""Supported distributed training frameworks."""
PyTorch = "PyTorch"
TensorFlow = "TensorFlow"
MPI = "MPI"
|