I am trying to run some code to train a model, while logging my results to MLflow on Databricks. I keep getting the following error when I try to make a call to mlflow.set_experiment()
,
raise ValueError('Enum {} has no value defined for name {!r}'.format(
ValueError: Enum ErrorCode has no value defined for name '403'
What exactly is going on here?
I am using Databricks Connect to run my code and the section where the error pops up looks like this,
# set remote tracking server URI
mlflow.set_tracking_uri(remote_server_uri)
# create the MLflow client
client = MlflowClient(remote_server_uri)
# set experiment to log mlflow runs
mlflow.set_experiment(experiment_name)