Skip to content

Commit

Permalink
add some basic glossary terms
Browse files Browse the repository at this point in the history
  • Loading branch information
TheEimer committed May 30, 2024
1 parent 85c9169 commit 8b95700
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions docs/glossary.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,38 @@ Glossary

.. glossary::

HPO
Hyperparameter Optimization. The process of finding the best hyperparameters for a given
machine learning model.

AutoRL
Automated Reinforcement Learning. The process of automating the process of applying
reinforcement learning to real-world problems.

AutoML
Automated Machine Learning. The process of automating the process of applying machine
learning to real-world problems.

Random Search
A hyperparameter optimization algorithm that randomly samples hyperparameters from a
predefined search space.

BO
Bayesian Optimization. A Black-Box optimization algorithm weighing exploration & exploitation
to find the minimum of its objective.

Multi-fidelity optimization
The process of optimizing a function using multiple levels of fidelity. This can be done by
using a surrogate model to approximate the function at different levels of fidelity.

PPO
Proximal Policy Optimization. A policy gradient method that uses a clipped surrogate objective
to improve the stability of the learning process.

DQN
Deep Q-Network. A deep reinforcement learning algorithm that uses a neural network to approximate
the Q-function.

SAC
Soft Actor-Critic. An off-policy reinforcement learning algorithm that uses the maximum entropy
principle to improve the exploration of the environment.

0 comments on commit 8b95700

Please sign in to comment.