mirror of
https://github.com/huggingface/deep-rl-class.git
synced 2026-03-31 17:21:01 +08:00
8 lines
595 B
Plaintext
8 lines
595 B
Plaintext
# Introduction [[introduction]]
|
|
|
|
One of the most critical tasks in Deep Reinforcement Learning is to **find a good set of training hyperparameters**.
|
|
|
|
<img src="https://raw.githubusercontent.com/optuna/optuna/master/docs/image/optuna-logo.png" alt="Optuna Logo"/>
|
|
|
|
[Optuna](https://optuna.org/) is a library that helps you to automate the search. In this Unit, we'll study a **little bit of the theory behind automatic hyperparameter tuning**. We'll first try to optimize the parameters of the DQN studied in the last unit manually. We'll then **learn how to automate the search using Optuna**.
|