Skip to content

Commit

Permalink
Move some run info attributes to tags (mlflow#926)
Browse files Browse the repository at this point in the history
  • Loading branch information
acroz authored and aarondav committed Mar 8, 2019
1 parent e20e712 commit b423804
Show file tree
Hide file tree
Showing 10 changed files with 402 additions and 73 deletions.
30 changes: 30 additions & 0 deletions docs/source/rest-api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1029,6 +1029,36 @@ Tag for a run.
| value | ``STRING`` | The tag value. |
+------------+------------+----------------+

Tag keys that start with ``mlflow.`` are reserved for internal use. The following tags are set
automatically by MLflow:

+-------------------------------+----------------------------------------------------------------------------------------+
| Key | Description |
+===============================+========================================================================================+
| ``mlflow.runName`` | Human readable name that identifies this run. |
+-------------------------------+----------------------------------------------------------------------------------------+
| ``mlflow.parentRunId`` | The ID of the parent run, if this is a nested run. |
+-------------------------------+----------------------------------------------------------------------------------------+
| ``mlflow.source.type`` | The source type, one of :ref:`mlflowsourcetype`. |
+-------------------------------+----------------------------------------------------------------------------------------+
| ``mlflow.source.name`` | Source identifier: GitHub URL, name of notebook, name of job, etc. |
+-------------------------------+----------------------------------------------------------------------------------------+
| ``mlflow.source.git.commit`` | Commit hash of the executed code, if in a git repository. |
+-------------------------------+----------------------------------------------------------------------------------------+
| ``mlflow.source.git.branch`` | Name of the branch of the executed code, if in a git repository. |
+-------------------------------+----------------------------------------------------------------------------------------+
| ``mlflow.source.git.repoURL`` | URL that the executed code was clone from. |
+-------------------------------+----------------------------------------------------------------------------------------+
| ``mlflow.project.env`` | One of "docker" or "conda", indicating the runtime context used by the mlflow project. |
+-------------------------------+----------------------------------------------------------------------------------------+
| ``mlflow.project.entryPoint`` | Name of the project entry point associated with the current run, if any. |
+-------------------------------+----------------------------------------------------------------------------------------+
| ``mlflow.docker.image.name`` | Name of the Docker image used to execute this run. |
+-------------------------------+----------------------------------------------------------------------------------------+
| ``mlflow.docker.image.id`` | ID of the Docker image used to execute this run. |
+-------------------------------+----------------------------------------------------------------------------------------+


.. _mlflowSearchExpression:

SearchExpression
Expand Down
Loading

0 comments on commit b423804

Please sign in to comment.