Skip to content

Commit

Permalink
Ready for v.0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertTLange committed Mar 14, 2023
1 parent bd1678c commit ff780f1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@
- [ ] Wavelet Based Encoding (van Steenkiste, 2016)
- [ ] CNN Hypernetwork (Ha - start with simple MLP)

### [v0.1.3] - [03/2023]

- Finally solved checkpoint loading LES problem (needed `MANIFEST.in`)
- Fixed PGPE bug with regards to scaled noise.

### [v0.1.2] - [03/2023]

- Fix LES checkpoint loading from package data via `pkgutil`.
Expand Down
2 changes: 1 addition & 1 deletion evosax/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.2"
__version__ = "0.1.3"
2 changes: 1 addition & 1 deletion evosax/strategies/pgpe.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def tell_strategy(
# adjust sigma according to the adaptive sigma calculation
# for stability, don't let sigma move more than 20% of orig value
sigma = jnp.clip(
state.sigma - params.sigma_lrate * delta_sigma,
state.sigma + params.sigma_lrate * delta_sigma,
min_allowed,
max_allowed,
)
Expand Down

0 comments on commit ff780f1

Please sign in to comment.