How to use ray.tune.function_runner.StatusReporter with tune.with_parameters?

Hey @stephano41, what version of Ray are you using?

I would recommend not using reporter like you have currently. Instead, you can remove the reporter arg from train_func and directly call tune.report(...) inside your train_func to report metrics to Tune. This should work correctly with tune.with_parameters(...).

For example, like here: Training (tune.Trainable, tune.report) — Ray 1.12.1

1 Like