スキル一覧に戻る
jvdomino

domino-experiment-tracking

by jvdomino

A comprehensive Claude Code plugin providing coverage of the Domino Data Lab platform for AI-assisted development.

1🍴 1📅 2026年1月16日
GitHubで見るManusで実行

SKILL.md


name: domino-experiment-tracking description: Track traditional ML experiments in Domino using the MLflow-based Experiment Manager. Covers experiment setup, auto-logging for sklearn/TensorFlow/PyTorch, manual logging, artifact storage, run comparison, and model registration. Use when training ML models, logging metrics and parameters, comparing model runs, or registering models.

Domino Experiment Tracking Skill

This skill provides comprehensive knowledge for tracking ML experiments in Domino Data Lab using the built-in MLflow-based Experiment Manager.

Key Concepts

Experiment Manager Overview

Domino's Experiment Manager is built on MLflow and provides:

  • Automatic and manual logging of parameters, metrics, and artifacts
  • Run comparison and visualization
  • Model versioning and registry
  • Integration with Domino projects and jobs

Critical Configuration

Experiment names must be unique across the entire Domino deployment. Always append username or project name to ensure uniqueness.

Quick Start

import mlflow
import os

# CRITICAL: Experiment names must be unique across Domino deployment
username = os.environ.get('DOMINO_STARTING_USERNAME', 'unknown')
experiment_name = f"my-experiment-{username}"

# Set the experiment
mlflow.set_experiment(experiment_name)

# Enable auto-logging (easiest approach)
mlflow.autolog()

# Run training
with mlflow.start_run(run_name="my-first-run"):
    model.fit(X_train, y_train)

    # Optional: manually log additional items
    mlflow.log_param("custom_param", "value")
    mlflow.log_metric("custom_metric", 0.95)

Supported Frameworks

FrameworkAuto-log Command
Scikit-learnmlflow.sklearn.autolog()
TensorFlow/Kerasmlflow.tensorflow.autolog()
PyTorchmlflow.pytorch.autolog()
XGBoostmlflow.xgboost.autolog()
LightGBMmlflow.lightgbm.autolog()
All at oncemlflow.autolog()

Environment Variables

Domino automatically configures MLflow to use the built-in tracking server. These variables are pre-set:

VariableDescription
MLFLOW_TRACKING_URIDomino's MLflow server URL
DOMINO_STARTING_USERNAMEUser running the experiment
DOMINO_PROJECT_NAMECurrent project name
DOMINO_RUN_IDDomino job run ID

スコア

総合スコア

70/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です