I'm trying to run mlflow on Rstudio on win system. I install mlflow package using this command install.packages("mlflow")
. And then I run the following code,
library(mlflow)
mlflow_ui()
This error is reported:
Error in wait_for(function() mlflow_rest("experiments", "search", client = client, :
Operation failed after waiting for 10 seconds
I tried a few other command, like mlflow_log_metric("foo", 1)
. it's still the same error. I'm new to this package. Is there any way to fix this error? Thanks.