This is how I’ve configured ray tune.Tuner
tuner = tune.Tuner(tune.with_resources(...), tune_config=tune.TuneConfig(...), run_config=air.RungConfig(local_dir=os.path.join(os.getcwd(), 'raytune_folder/', sync_config=tune.SyncConfig(upload_dir='s3://raytune/test/', syncer='auto', sync_artifacts=True, sync_on_checkpoint=True,), checkpoint_config=ray.air.CheckpointConfig(num_to_keep=5,...), progress_reporter=reporter, vebose=1, log_to_file=True))
This outputs error as mentioned in the title. Weird thing is it worked with python3.7 however starting to throw this error after migrating to python3.8 and on the error message “Connect timeout on endpoint URL : https://s3.us-east-2.amazonaws.com/raytune/test/experiment-state-2023-10-16_09-41-01.json” the region is wrong.