File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 11
11
- [ ] Wavelet Based Encoding (van Steenkiste, 2016)
12
12
- [ ] CNN Hypernetwork (Ha - start with simple MLP)
13
13
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
+
14
19
### [ v0.1.2] - [ 03/2023]
15
20
16
21
- Fix LES checkpoint loading from package data via ` pkgutil ` .
Original file line number Diff line number Diff line change 1
- __version__ = "0.1.2 "
1
+ __version__ = "0.1.3 "
Original file line number Diff line number Diff line change @@ -162,7 +162,7 @@ def tell_strategy(
162
162
# adjust sigma according to the adaptive sigma calculation
163
163
# for stability, don't let sigma move more than 20% of orig value
164
164
sigma = jnp .clip (
165
- state .sigma - params .sigma_lrate * delta_sigma ,
165
+ state .sigma + params .sigma_lrate * delta_sigma ,
166
166
min_allowed ,
167
167
max_allowed ,
168
168
)
You can’t perform that action at this time.
0 commit comments