I have an Mlflow project that raises an exception. I execute that function using mlflow.run
, but I get mlflow.exceptions.ExecutionException("Run (ID '<run_id>') failed")
.
Is there any way I could get the exception that is being raised where I am executing mlflow.run
?
Or is it possible to send an mlflow.exceptions.ExecutionException
with custom message set from within the project?