Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ $ cd ensmallen

# - or -

$ wget http://ensmallen.org/files/ensmallen-2.22.2.tar.gz
$ tar -xvzpf ensmallen-2.22.2.tar.gz
$ wget http://ensmallen.org/files/ensmallen-3.10.0.tar.gz
$ tar -xvzpf ensmallen-3.10.0.tar.gz
$ cd ensmallen-latest
```

Expand Down
3 changes: 3 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
### ensmallen ?.??.?: "???"
###### ????-??-??

### ensmallen 3.10.0: "Unexpected Rain"
###### 2025-09-25
* SGD-like optimizers now all divide the step size by the batch size so that
step sizes don't need to be tuned in addition to batch sizes. If you require
behavior from ensmallen 2, define the `ENS_OLD_SEPARABLE_STEP_BEHAVIOR` macro
Expand Down
6 changes: 3 additions & 3 deletions include/ensmallen_bits/ens_version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@
// (i.e. the version name will be "RC1", "RC2", etc.). Otherwise the version
// name will typically be a seemingly arbitrary set of words that does not
// contain the capitalized string "RC".
#define ENS_VERSION_NAME "RC1"
#define ENS_VERSION_NAME "Unexpected Rain"
// Incorporate the date the version was released.
#define ENS_VERSION_YEAR "2025"
#define ENS_VERSION_MONTH "04"
#define ENS_VERSION_DAY "30"
#define ENS_VERSION_MONTH "09"
#define ENS_VERSION_DAY "25"

namespace ens {

Expand Down
Loading