Hyperparameter tuning process


调整步骤

  • 有哪些超参数需要调(红色最优先,黄色次之,紫色随后)
    Deep learning II - III Hyperparameter tuning - Hyperparameter tuning process 如何调整超参数以及范围选择
  • 在调谐时,不要用grid;而是要随机选择参数,因为你并不知道什么参数会更重要
    Deep learning II - III Hyperparameter tuning - Hyperparameter tuning process 如何调整超参数以及范围选择
  • 由粗到细。
    Deep learning II - III Hyperparameter tuning - Hyperparameter tuning process 如何调整超参数以及范围选择

范围选择

  • 对于n[l],#layers等参数,使用random sampling uniformly是合适的。
    Deep learning II - III Hyperparameter tuning - Hyperparameter tuning process 如何调整超参数以及范围选择
  • 对于learning_rate,应该在log scale上进行random sampling
    Deep learning II - III Hyperparameter tuning - Hyperparameter tuning process 如何调整超参数以及范围选择
  • 对于在exponentially weighted averages中的β,需要做个小转换
    Deep learning II - III Hyperparameter tuning - Hyperparameter tuning process 如何调整超参数以及范围选择

相关文章:

  • 2021-12-07
  • 2021-04-13
  • 2021-11-30
  • 2021-06-23
  • 2021-12-03
  • 2021-11-01
  • 2021-05-09
  • 2021-05-15
猜你喜欢
  • 2022-12-23
  • 2021-04-24
  • 2021-11-13
  • 2022-12-23
  • 2021-09-08
  • 2021-06-24
  • 2021-11-21
相关资源
相似解决方案