Right now, I am using ray tuner, the default process name is like “ray:ImplicitFunc.train”, is there any way to modify it?
You can modify the process name by setting the name
parameter in the RunConfig
when creating the tuner
. The name
parameter will be used as the prefix for the process name.
For example:
tuner = tune.Tuner(
train_fn,
run_config=RunConfig(name="my_tuner")
)
tuner.fit()
The process name will be something like “my_tuner:_ImplictFunc.train”.