Skip to content

Commit ff780f1

Browse files
committed
Ready for v.0.1.3
1 parent bd1678c commit ff780f1

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@
1111
- [ ] Wavelet Based Encoding (van Steenkiste, 2016)
1212
- [ ] CNN Hypernetwork (Ha - start with simple MLP)
1313

14+
### [v0.1.3] - [03/2023]
15+
16+
- Finally solved checkpoint loading LES problem (needed `MANIFEST.in`)
17+
- Fixed PGPE bug with regards to scaled noise.
18+
1419
### [v0.1.2] - [03/2023]
1520

1621
- Fix LES checkpoint loading from package data via `pkgutil`.

evosax/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.1.2"
1+
__version__ = "0.1.3"

evosax/strategies/pgpe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ def tell_strategy(
162162
# adjust sigma according to the adaptive sigma calculation
163163
# for stability, don't let sigma move more than 20% of orig value
164164
sigma = jnp.clip(
165-
state.sigma - params.sigma_lrate * delta_sigma,
165+
state.sigma + params.sigma_lrate * delta_sigma,
166166
min_allowed,
167167
max_allowed,
168168
)

0 commit comments

Comments
 (0)