Tags: ymd-h/vulkpy
Tags
Version 0.0.7 Change Log Summary ------------------- * Fix: Example 02-nn.py. * Add: CI job running example code as regression test * Add: Regularizer * Add: MixLoss * Improve: Type Hinting enforeced by mypy CI job * Refactoring: Internal class hierarchy Regularizer ----------- There are 3 classes for Regularizer; * Lasso(coeff = 1.0) * Ridge(coeff = 1.0) * Elastic(L1 = 1.0, L2 = 1.0) By passing to Parameter (through Dense), regularizer is set. Parameter has new methods `regular_loss()` and `regular_grad()`. MixLoss ------- MixLoss mixes multiple losses Full Change Log --------------- See * `git log v0.0.6...v0.0.7` or `git log v0.0.6...v0.0.7` * v0.0.6...v0.0.7