Skip to content

Commit

Permalink
Merge pull request #70 from EMI-Group/dev_es
Browse files Browse the repository at this point in the history
Complete paper annotations for all es algorithms.
  • Loading branch information
WLS2002 authored Aug 23, 2023
2 parents 8aecff0 + 12b29bb commit 28946a3
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/evox/algorithms/so/es/nes.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# --------------------------------------------------------------------------------------
# This code implements algorithms described in the following papers:
#
# Title: Exponential Natural Evolution Strategies (xNES)
# Link: https://dl.acm.org/doi/abs/10.1145/1830483.1830557
#
# Title: Natural Evolution Strategies (SeparableNES)
# Link: https://www.jmlr.org/papers/volume15/wierstra14a/wierstra14a.pdf
# --------------------------------------------------------------------------------------

import math
import jax
import jax.numpy as jnp
Expand Down
10 changes: 10 additions & 0 deletions src/evox/algorithms/so/es/open_es.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# --------------------------------------------------------------------------------------
# This code implements algorithms described in the following papers:
#
# Title: Exponential Natural Evolution Strategies (xNES)
# Link: https://dl.acm.org/doi/abs/10.1145/1830483.1830557
#
# Title: Natural Evolution Strategies (SeparableNES)
# Link: https://www.jmlr.org/papers/volume15/wierstra14a/wierstra14a.pdf
# --------------------------------------------------------------------------------------

import jax
import jax.numpy as jnp
import optax
Expand Down
6 changes: 6 additions & 0 deletions src/evox/algorithms/so/es/pgpe.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# --------------------------------------------------------------------------------------
# 1. This code implements the algorithm described in the following paper:
# Title: Parameter-exploring Policy Gradients (PGPE)
# Link: https://mediatum.ub.tum.de/doc/1287490/file.pdf
# --------------------------------------------------------------------------------------

import jax
import jax.numpy as jnp
import optax
Expand Down

0 comments on commit 28946a3

Please sign in to comment.