mlflow/mlflow-example

how to trigger mlflow project code which is not in master branch?

j-arpit opened this issue · 2 comments

When we use mlflow run git://url it is triggering the code from master branch only. Is there any way to trigger the code which is not in master branch?

Same question as above

Mlflow project only supports triggers from Head/Default Branch.
mlflow/mlflow/projects/utils.py line No: 234
g = git.cmd.Git(dst_dir) cmd = ["git", "remote", "show", "origin"] output = g.execute(cmd) head_branch = _get_head_branch(output)