JMBokhorst

Results 6 comments of JMBokhorst

Hello, I run into the same issue. Could you re-upload the zip files to the repo? Thank you!

The kidney zip file is not corrupted, the other two are. But even though all unzip packages complain about the file being corrupted, I could open te files with pandas...

I have the same problem, also with the same example run. I have a Linux machine (Ubuntu 22.04) with Python 3.11 running via Miniconda, using MLflow 2.12.2 and Ray 2.22.0....

I have been able to solve it with the following: ``` def train_function_mlflow(config): mlflow_config = config.pop('mlflow', None) setup_mlflow(config) mlflow.set_tracking_uri(uri=mlflow_config['tracking_uri']) mlflow.set_experiment(experiment_name=mlflow_config['experiment_name']) mlflow.log_params(config) # Hyperparameters width, height = config["width"], config["height"] for step...

So still a big bug, glad that we found a workaround! I hope that the ray team can fix it, as it would be neater to use the `setup_mlflow` function.

Hi @woshiyyya, yes correct. When I manually set the mlflow `tracking_uri` and `experiment` I am able to log to mlflow. In this case the trial name is not logged correctly,...