MMEngine
2 minute read
MMEngine by OpenMMLab is a foundational library for training deep learning models based on PyTorch. MMEngine implements a next-generation training architecture for the OpenMMLab algorithm library, providing a unified execution foundation for over 30 algorithm libraries within OpenMMLab. Its core components include the training engine, evaluation engine, and module management.
Weights and Biases is directly integrated into MMEngine through a dedicated WandbVisBackend
that can be used to
- log training and evaluation metrics.
- log and manage experiment configs.
- log additional records such as graph, images, scalars, etc.
Get started
Install openmim
and wandb
.
Next, install mmengine
and mmcv
using mim
.
Use the WandbVisBackend
with MMEngine Runner
This section demonstrates a typical workflow using WandbVisBackend
using mmengine.runner.Runner
.
-
Define a
visualizer
from a visualization config.You pass a dictionary of arguments for [W&B run initialization](/ref/python/init/) input parameters to `init_kwargs`.
-
Initialize a
runner
with thevisualizer
, and callrunner.train()
.
Use the WandbVisBackend
with OpenMMLab computer vision libraries
The WandbVisBackend
can also be used easily to track experiments with OpenMMLab computer vision libraries such as MMDetection.
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.