Seamlessly integrate Comet's powerful experiment tracking capabilities with your ZenML pipelines. Visualize metrics, models, and datasets from your automated MLOps workflows in Comet's intuitive UI, making it easy to monitor and share pipeline results across your team.
@step decoratorpipeline_name and pipeline_run_name tagsCometExperimentTrackerSettings
from zenml import step
@step(experiment_tracker="comet_tracker")
def my_step():
...
# go through some experiment tracker methods
experiment_tracker.log_metrics({"my_metric": 42})
experiment_tracker.log_params({"my_param": "hello"})
# or use the Experiment object directly
experiment_tracker.experiment.log_model(...)
# or pass the Comet Experiment object into helper methods
from comet_ml.integration.sklearn import log_model
log_model(
experiment=experiment_tracker.experiment,
model_name="SVC",
model=model,
)
...
Expand your ML pipelines with more than 50 ZenML Integrations