{% extends "base.html" %} {% block title %}Lineage{% endblock %} {% block content %}
Every recorded run with cross-links to the code, the parent commit, the data, and the MLflow run.
| Record | Name | Status | Type | MLflow run | Git | Parent | DVC | Env | Command | When |
|---|---|---|---|---|---|---|---|---|---|---|
| {% if entry.type == "git" %} {{ entry.id }} {% elif entry.type == "snapshot" %} {{ entry.id }} {% else %} {{ entry.id }} {% endif %} | {% if entry.record_name %} {{ entry.record_name }} {% else %} — {% endif %} | {% set status_value = entry.status or 'done' %} {% if status_value == 'in_progress' %} IN PROGRESS {% elif status_value == 'failed' %} FAILED{% if entry.exit_code is not none %} ({{ entry.exit_code }}){% endif %} {% else %} DONE {% endif %} | {% if entry.type == "git" %} Git {% elif entry.type == "snapshot" %} Snapshot {% else %} {{ entry.type }} {% endif %} |
{% if entry.mlflow_run %}
{% if entry.mlflow_url %}
{{ entry.mlflow_run }}
{% else %}
{{ entry.mlflow_run }}
{% endif %}
{% if entry.mlflow_run_name %}
{{ entry.mlflow_run_name }}
{% endif %}
{% if entry.record_name and entry.mlflow_run_name and entry.record_name != entry.mlflow_run_name %}
name mismatch
{% endif %}
{% else %}
—
{% endif %}
|
{% if entry.git_url %} Open {% else %} — {% endif %} | {% if entry.parent %} {{ entry.parent }} {% else %} — {% endif %} | {% if entry.dvc_version %} {{ entry.dvc_version }} {% endif %} {% if entry.dvc_linkage_status %} {{ entry.dvc_linkage_status }} {% elif not entry.dvc_version %} — {% endif %} | {% if entry.env_fingerprint_status %} {{ entry.env_fingerprint_status }} {% else %} — {% endif %} |
{% if entry.run_command_summary %}
{{ entry.run_command_summary }}
{% else %}
—
{% endif %}
|
{{ entry.timestamp }} |
No runs recorded yet. Use ailine track -- to record one. |
||||||||||
| Run | MLflow name | Experiment | Start | Commit tag | Snapshot tag | Open |
|---|---|---|---|---|---|---|
| {{ run.run_id }} | {% if run.mlflow_run_name %}{{ run.mlflow_run_name }}{% else %}—{% endif %} | {{ run.experiment_id or '—' }} | {{ run.start_time or '—' }} | {% if run.commit_tag %} {{ run.commit_tag }} {% else %} — {% endif %} | {% if run.snapshot_tag %} {{ run.snapshot_tag }} {% else %} — {% endif %} | {% if run.mlflow_url %} MLflow {% else %} — {% endif %} |