Skip to content
Open
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
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
## Unreleased

- Add statically-typed `scale()` to `Matrix64`, `Matrix32`, `Vector64`, and
`Vector32`, and explicit axis broadcasting (`addVector`, `subtractVector`,
`multiplyVector`, `divideVector`) on the matrix types to give a fully typed
multiply path and remove the square-matrix broadcast ambiguity.
- Add a CPU reverse-mode automatic differentiation layer (`Variable`) built on
the existing SIMD kernels, covering matmul, elementwise arithmetic,
activations, reductions, broadcast-with-reduce bias, and memory-saving graph
freeing in `backward`.
- Add a neural-network module: `Module`, `Linear`, `ReLU`, `Tanh`, `Sigmoid`,
`Sequential`, and `SGD` (with momentum) / `Adam` optimizers.

## 2.0.0

- Redesign the package around high performance and script-friendly ergonomics,
Expand Down
2 changes: 2 additions & 0 deletions lib/matrices.dart
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,5 @@ export 'src/iterative.dart';
export 'src/krylov.dart';
export 'src/advanced.dart';
export 'src/sparse_matrix.dart';
export 'src/autodiff.dart';
export 'src/nn.dart';
Loading