ray.tune.Tuner.get_results#
- Tuner.get_results() ResultGrid [源代码]#
获取超参数调优运行的结果。
此方法返回与
fit()
相同的结果,并且可以在不再次调用fit()
的情况下,用于在恢复调优器后检索结果。如果调谐器之前没有进行过拟合,将会引发错误。
from ray.tune import Tuner # `trainable` is what was passed in to the original `Tuner` tuner = Tuner.restore("/path/to/experiment', trainable=trainable) results = tuner.get_results()
- 返回:
先前拟合调优运行的结果网格。