Skip to content

Commit

Permalink
Change version to 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
carsten-wenderdel committed Nov 26, 2023
1 parent 6d4454b commit 34d3f74
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 9 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,18 @@ The minor version will be incremented if any of the following changes:

This means you can reuse the same neural networks between for example 0.2.0 and 0.2.1, but not between 0.1.0 and 0.2.0.

## [Unreleased]
## 0.2.0 - 2023-11-26

- `added` Rudimentary 2-ply evaluation of positions.
- `added` Batch inference of neural networks.
- `changed` Improved selection of positions for rollouts via self play.
- `changed` Different neural networks for _contact_ and _race_.
- `changed` Rollout data is now stored with GnuBG position IDs.
- `changed` Use `Hardsigmoid` instead of `ReLU` for hidden layers.
- `changed` Use `AdamW` instead of `SGD` as PyTorch Optimizer.
- `changed` Use `L1Loss` instead of `MSELoss` as loss function during supervised training.
- `added` The C API now supports raw evaluation of positions.
- `changed` The C API doesn't need to reload the neural nets for every call.
- `added` Documentation for `engine` and the training process.

## 0.1.0 - 2023-10-17

Expand Down
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ resolver = "2"
[workspace.package]
edition = "2021"
license = "Apache-2.0 OR MIT"
version = "0.2.0-pre"
version = "0.2.0"

[workspace.dependencies]
rayon = "1.8.0"
Expand Down

0 comments on commit 34d3f74

Please sign in to comment.