skip to Main Content

How to filter out runs whose runName starts with the string "iteration11_run_number"?

2

Answers


  1. Chosen as BEST ANSWER

    runName parameter can be accessed by tags."mlflow.runName". mlflow.runName is inside quotes because it has a special character in it, the .. Otherwise you can go on without putting tag name in parentheses.

    To filter, use this query: tags."mlflow.runName" LIKE "iteration11_run_number%"

    As the mlflow query is like SQL WHERE query, you can use LIKE keyword. In SQL the % wildcard is used to denote 0, 1, or more characters, and _ wildcard is used to denote 1 character.

    For more details, refer to the documentation.


  2. run_name LIKE "pattern" works for me too.

    See the screenshot below for an example how to use it in the web interface

    enter image description here

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search