Hyperparameter optimization for Pytorch model

后端 未结 4 1583
有刺的猬
有刺的猬 2021-01-30 13:48

What is the best way to perform hyperparameter optimization for a Pytorch model? Implement e.g. Random Search myself? Use Skicit Learn? Or is there anything else I am not aware

4条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-01-30 14:35

    What I found is following:

    • HyperOpt
    • Optuna
    • tune

    More young projects:

    • hypersearch limited only to FC layers.
    • skorch Just grid search available
    • Auto-PyTorch

    UPDATE something new:

    • Ax: Adaptive Experimentation Platform by facebook

    • BoTorch: Bayesian Optimization in PyTorch

    Also, I found a useful table at post by @Richard Liaw:

提交回复
热议问题