ruvector/crates
rUv 1cc09933eb feat: Implement GNN forgetting mitigation (#17)
This commit addresses GitHub issue #17 by implementing comprehensive
forgetting mitigation for continual learning in the GNN module.

## New Features

### Optimizer Implementation (training.rs)
- Full Adam optimizer with bias-corrected first and second moments
- SGD with momentum support
- Lazy initialization of state buffers for efficiency

### Replay Buffer (replay.rs)
- Experience replay with reservoir sampling for uniform distribution
- Distribution shift detection with statistical tracking
- Configurable capacity and batch sampling

### Elastic Weight Consolidation (ewc.rs)
- Fisher information diagonal computation
- Anchor weight consolidation for task boundaries
- EWC penalty and gradient computation

### Learning Rate Scheduling (scheduler.rs)
- Constant, StepDecay, Exponential schedulers
- CosineAnnealing with warm restarts
- WarmupLinear for pre-training warmup
- ReduceOnPlateau for adaptive learning

## Deployment Infrastructure

### GitHub Actions Release Pipeline (.github/workflows/release.yml)
- 8-stage CI/CD pipeline for complete releases
- Validates, builds crates, WASM, and native modules
- Publishes to crates.io and npmjs.com
- Creates GitHub releases with artifacts

### Deployment Script (scripts/deploy.sh)
- Comprehensive deployment orchestration
- Version synchronization across Cargo.toml and package.json
- Dry-run mode for testing
- Cross-platform native builds support

## Test Coverage
- 177 tests passing in ruvector-gnn
- Comprehensive tests for all new modules
- Convergence tests for optimizers

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-26 23:17:07 +00:00
..
profiling Reorganize repository structure 2025-11-19 20:53:37 +00:00
ruvector-bench chore: Update workspace version to 0.1.2 and simplify CI workflow 2025-11-26 17:43:34 +00:00
ruvector-cli chore: Update workspace version to 0.1.2 and simplify CI workflow 2025-11-26 17:43:34 +00:00
ruvector-cluster docs: Add README files for all crates and update root README with crates table 2025-11-26 18:15:05 +00:00
ruvector-collections docs: Add README files for all crates and update root README with crates table 2025-11-26 18:15:05 +00:00
ruvector-core fix: Resolve pre-existing test failures and fix sync script 2025-11-26 17:54:38 +00:00
ruvector-filter docs: Add README files for all crates and update root README with crates table 2025-11-26 18:15:05 +00:00
ruvector-gnn feat: Implement GNN forgetting mitigation (#17) 2025-11-26 23:17:07 +00:00
ruvector-gnn-node feat: Implement GNN forgetting mitigation (#17) 2025-11-26 23:17:07 +00:00
ruvector-gnn-wasm chore: Update workspace version to 0.1.2 and simplify CI workflow 2025-11-26 17:43:34 +00:00
ruvector-graph docs: Add README files for all crates and update root README with crates table 2025-11-26 18:15:05 +00:00
ruvector-graph-node docs: Add README files for all crates and update root README with crates table 2025-11-26 18:15:05 +00:00
ruvector-graph-wasm chore: Update workspace version to 0.1.2 and simplify CI workflow 2025-11-26 17:43:34 +00:00
ruvector-metrics docs: Add README files for all crates and update root README with crates table 2025-11-26 18:15:05 +00:00
ruvector-node feat: Implement GNN forgetting mitigation (#17) 2025-11-26 23:17:07 +00:00
ruvector-raft docs: Add README files for all crates and update root README with crates table 2025-11-26 18:15:05 +00:00
ruvector-replication docs: Add README files for all crates and update root README with crates table 2025-11-26 18:15:05 +00:00
ruvector-router-cli chore: Update workspace version to 0.1.2 and simplify CI workflow 2025-11-26 17:43:34 +00:00
ruvector-router-core chore: Update workspace version to 0.1.2 and simplify CI workflow 2025-11-26 17:43:34 +00:00
ruvector-router-ffi chore: Update workspace version to 0.1.2 and simplify CI workflow 2025-11-26 17:43:34 +00:00
ruvector-router-wasm chore: Update workspace version to 0.1.2 and simplify CI workflow 2025-11-26 17:43:34 +00:00
ruvector-server docs: Add README files for all crates and update root README with crates table 2025-11-26 18:15:05 +00:00
ruvector-snapshot docs: Add README files for all crates and update root README with crates table 2025-11-26 18:15:05 +00:00
ruvector-tiny-dancer-core fix: Resolve unresolved imports in ruvector-tiny-dancer-core examples 2025-11-26 22:48:12 +00:00
ruvector-tiny-dancer-node docs: Add README files for all crates and update root README with crates table 2025-11-26 18:15:05 +00:00
ruvector-tiny-dancer-wasm docs: Add README files for all crates and update root README with crates table 2025-11-26 18:15:05 +00:00
ruvector-wasm feat: Implement GNN forgetting mitigation (#17) 2025-11-26 23:17:07 +00:00