|
1 | 1 | # Release Notes |
2 | 2 |
|
3 | 3 |
|
| 4 | +## Version 0.1.6 |
| 5 | + |
| 6 | +### New Features |
| 7 | + |
| 8 | +#### Parameter Management Expansion (`braintools.param`) |
| 9 | +- **Hierarchical data container**: Added `Data` for composed state storage and cloning. |
| 10 | +- **Parameter wrappers**: Added `Param` and `Const` with built-in transforms and optional regularization. |
| 11 | +- **State containers**: Added `ArrayHidden` and `ArrayParam` with transform-aware `.data` access. |
| 12 | +- **Regularization priors**: Added `GaussianReg`, `L1Reg`, and `L2Reg` with optional trainable hyperparameters. |
| 13 | +- **Utilities**: Added `get_param()` and `get_size()` helpers for parameter/state handling. |
| 14 | + |
| 15 | +#### Transforms |
| 16 | +- **New `ReluT` transform** for lower-bounded parameters. |
| 17 | +- **Expanded transform suite** now includes `PositiveT`, `NegativeT`, `ScaledSigmoidT`, `PowerT`, |
| 18 | + `OrderedT`, `SimplexT`, and `UnitVectorT`. |
| 19 | + |
| 20 | +### Improvements |
| 21 | + |
| 22 | +#### API Consistency |
| 23 | +- **Transform naming cleanup**: Standardized transform class names with the `*T` suffix |
| 24 | + (e.g., `SigmoidT`, `SoftplusT`, `AffineT`, `ChainT`, `MaskedT`, `ClipT`). |
| 25 | + |
| 26 | +#### Documentation |
| 27 | +- **Expanded param API docs**: Added sections for data containers, state containers, regularization, |
| 28 | + utilities, and updated transform listings in `docs/apis/param.rst`. |
| 29 | +- **API index update**: Added `param` API page to `docs/index.rst`. |
| 30 | + |
| 31 | +#### Tests |
| 32 | +- **New test coverage**: Added tests for data containers, modules, regularization, state, transforms, |
| 33 | + and utilities across the param module. |
| 34 | + |
| 35 | +### Breaking Changes |
| 36 | +- **Transform API renames**: Transform classes now use the `*T` suffix (e.g., `Sigmoid` -> `SigmoidT`). |
| 37 | +- **Custom transform removed**: The `Custom` transform is no longer part of the public API. |
| 38 | + |
| 39 | +### Bug Fixes |
| 40 | +- **Initializer RNG**: `TruncatedNormal` now defaults to `numpy.random` when no RNG is provided. |
| 41 | + |
| 42 | + |
4 | 43 | ## Version 0.1.5 |
5 | 44 |
|
6 | 45 | ### New Features |
|
0 commit comments