chore: clean root — move 7 doc files to docs/
- DOCUMENTATION_IMPROVEMENTS_NEEDED.md → docs/ - PUBLICATION_GUIDE_v1.0.0.md → docs/ - PUBLICATION_STATUS.md → docs/ - PYPI_PUBLISHING.md → docs/ - RELEASE_NOTES_v0.2.0.md, v0.3.0.md, v1.0.0.md → docs/ - Added build artifacts to .gitignore
This commit is contained in:
@@ -0,0 +1,367 @@
|
||||
# OptimizR v0.3.0 Release Notes
|
||||
|
||||
**Release Date:** January 4, 2025
|
||||
**Status:** Major Feature Release 🚀
|
||||
|
||||
---
|
||||
|
||||
## 🎯 Highlights
|
||||
|
||||
This release introduces **Mean Field Games (MFG)** algorithms with full Python integration and comprehensive tutorial notebooks. We've also audited and validated all example notebooks, ensuring production-ready quality.
|
||||
|
||||
### Major Additions
|
||||
|
||||
✨ **Mean Field Games Framework** - Complete implementation of 1D MFG solvers
|
||||
📚 **Validated Tutorial Notebooks** - All 7 example notebooks tested and working
|
||||
🏗️ **Maturin Build System** - Replaced cargo with maturin for reliable macOS builds
|
||||
🐍 **Enhanced Python Wrappers** - Smart OOP interfaces with automatic Rust acceleration
|
||||
|
||||
---
|
||||
|
||||
## 🆕 New Features
|
||||
|
||||
### 1. Mean Field Games (MFG) Module
|
||||
|
||||
Complete implementation of Mean Field Games for modeling large populations of interacting agents.
|
||||
|
||||
**New Classes & Functions:**
|
||||
- `MFGConfig` / `MFGConfigPy` - Configuration for MFG problems
|
||||
- `solve_mfg_1d_rust()` - 1D Mean Field Games solver
|
||||
|
||||
**Features:**
|
||||
- Hamilton-Jacobi-Bellman (HJB) backward solver
|
||||
- Fokker-Planck forward solver
|
||||
- Fixed-point iteration for coupled equations
|
||||
- Upwind finite difference schemes
|
||||
- Neumann boundary conditions
|
||||
- Convergence diagnostics
|
||||
|
||||
**Example:**
|
||||
```python
|
||||
from optimizr import MFGConfig, solve_mfg_1d_rust
|
||||
import numpy as np
|
||||
|
||||
# Configure MFG problem
|
||||
config = MFGConfig(
|
||||
nx=100, nt=100, # Grid: 100 spatial × 100 temporal points
|
||||
x_min=0.0, x_max=1.0, # Spatial domain [0, 1]
|
||||
T=1.0, # Time horizon
|
||||
nu=0.01, # Viscosity coefficient
|
||||
max_iter=50, # Max iterations for fixed-point
|
||||
tol=1e-5, # Convergence tolerance
|
||||
alpha=0.5 # Relaxation parameter
|
||||
)
|
||||
|
||||
# Initial distribution (Gaussian at x=0.3)
|
||||
x = np.linspace(0, 1, 100)
|
||||
m0 = np.exp(-50 * (x - 0.3)**2)
|
||||
m0 = m0 / (np.sum(m0) * (x[1] - x[0]))
|
||||
|
||||
# Terminal cost (quadratic: agents want to reach x=0.7)
|
||||
u_terminal = 0.5 * (x - 0.7)**2
|
||||
|
||||
# Solve MFG
|
||||
u, m, iterations = solve_mfg_1d_rust(
|
||||
m0, u_terminal, config,
|
||||
lambda_congestion=0.5
|
||||
)
|
||||
|
||||
print(f"Converged in {iterations} iterations")
|
||||
print(f"Solution shape: u{u.shape}, m{m.shape}")
|
||||
```
|
||||
|
||||
**Performance:**
|
||||
- **0.4 seconds** for 100×100 grid, 50 iterations
|
||||
- Stable computation (no NaN/overflow)
|
||||
- Handles complex agent dynamics
|
||||
|
||||
**Tutorial Notebook:**
|
||||
- `examples/notebooks/mean_field_games_tutorial.ipynb`
|
||||
- Full workflow with visualizations
|
||||
- Comparison with Python reference implementation
|
||||
- 3D surface plots of distribution evolution
|
||||
|
||||
### 2. Maturin Build System
|
||||
|
||||
Replaced cargo-based builds with maturin for improved reliability and compatibility.
|
||||
|
||||
**Benefits:**
|
||||
- ✅ Works reliably on macOS (fixes linker issues)
|
||||
- ✅ Creates proper Python wheels for abi3 (Python ≥ 3.8)
|
||||
- ✅ Editable installs with `maturin develop`
|
||||
- ✅ Better integration with Python packaging ecosystem
|
||||
|
||||
**Build Commands:**
|
||||
```bash
|
||||
# Install maturin
|
||||
pip install maturin
|
||||
|
||||
# Development build (editable)
|
||||
maturin develop --release --features python-bindings
|
||||
|
||||
# Production wheel
|
||||
maturin build --release --features python-bindings
|
||||
|
||||
# Install from wheel
|
||||
pip install target/wheels/optimizr-0.3.0-*.whl
|
||||
```
|
||||
|
||||
### 3. Python Wrapper Architecture
|
||||
|
||||
Discovered and documented the elegant two-layer architecture:
|
||||
|
||||
**Layer 1: Rust Core** (`src/` with PyO3)
|
||||
- Raw functions: `fit_hmm()`, `viterbi_decode()`, `solve_mfg_1d_rust()`
|
||||
- Parameter classes: `HMMParams`, `MFGConfig`
|
||||
- High-performance implementations
|
||||
|
||||
**Layer 2: Python Wrappers** (`python/optimizr/`)
|
||||
- User-friendly OOP interfaces: `HMM` class, etc.
|
||||
- Familiar API patterns (scikit-learn style)
|
||||
- Automatic Rust acceleration when available
|
||||
- Graceful fallback to pure Python
|
||||
|
||||
**Example: HMM Wrapper**
|
||||
```python
|
||||
# User-friendly interface
|
||||
from optimizr import HMM
|
||||
|
||||
hmm = HMM(n_states=3)
|
||||
hmm.fit(returns, n_iterations=100, tolerance=1e-6)
|
||||
predicted_states = hmm.predict(returns)
|
||||
|
||||
# Internally uses Rust:
|
||||
# - _rust_fit_hmm() for training
|
||||
# - _rust_viterbi() for prediction
|
||||
# - Automatic fallback if Rust unavailable
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## 📚 Documentation & Examples
|
||||
|
||||
### Tutorial Notebooks Audit
|
||||
|
||||
Comprehensive audit and testing of all 7 example notebooks:
|
||||
|
||||
✅ **01_hmm_tutorial.ipynb** - WORKING
|
||||
- Hidden Markov Models for regime detection
|
||||
- Baum-Welch training, Viterbi decoding
|
||||
- Market regime classification
|
||||
- All cells execute successfully
|
||||
|
||||
✅ **02_mcmc_tutorial.ipynb** - WORKING
|
||||
- Metropolis-Hastings MCMC
|
||||
- Bayesian parameter estimation
|
||||
- Posterior distributions
|
||||
- Imports verified
|
||||
|
||||
✅ **03_differential_evolution_tutorial.ipynb** - READY
|
||||
- Global optimization
|
||||
- Multiple test functions
|
||||
- Performance comparisons
|
||||
|
||||
ℹ️ **03_optimal_control_tutorial.ipynb** - THEORY ONLY
|
||||
- Educational content on optimal control
|
||||
- Stochastic differential equations
|
||||
- No optimizr imports (by design)
|
||||
|
||||
✅ **04_real_world_applications.ipynb** - FIXED & WORKING
|
||||
- Real-world crypto market analysis
|
||||
- Uses: HMM, MCMC, grid_search, mutual_information
|
||||
- Fixed: Removed invalid `random_state` parameter
|
||||
- All tested cells execute successfully
|
||||
|
||||
✅ **05_performance_benchmarks.ipynb** - WORKING
|
||||
- Rust vs Python comparisons
|
||||
- Benchmarks against hmmlearn, scipy, sklearn
|
||||
- Auto-installs dependencies
|
||||
|
||||
✅ **mean_field_games_tutorial.ipynb** - NEW & FULLY TESTED
|
||||
- Complete MFG workflow
|
||||
- 3D visualizations of agent distributions
|
||||
- Time-evolution plots
|
||||
- Performance metrics
|
||||
- All 12 code cells execute successfully
|
||||
|
||||
### New Documentation Files
|
||||
|
||||
- **MFG_TUTORIAL_COMPLETE.md** - Full MFG implementation summary
|
||||
- **NOTEBOOK_AUDIT_REPORT.md** - Comprehensive notebook validation report
|
||||
- **COMPLETE_NOTEBOOK_PROOF.md** - Execution proof with timestamps
|
||||
|
||||
---
|
||||
|
||||
## 🔧 Bug Fixes
|
||||
|
||||
### Critical Fixes
|
||||
|
||||
1. **MFGConfig Parameter Fix**
|
||||
- **Issue:** Used `ny` parameter for 1D problems (should only be for 2D)
|
||||
- **Fix:** Removed `ny` from `MFGConfigPy` instantiation
|
||||
- **Impact:** MFG solver now works correctly for 1D problems
|
||||
|
||||
2. **HMM random_state Parameter**
|
||||
- **Issue:** `04_real_world_applications.ipynb` used non-existent `random_state` parameter
|
||||
- **Fix:** Removed `random_state` from `HMM()` constructor calls
|
||||
- **Files:** `04_real_world_applications.ipynb`
|
||||
|
||||
3. **macOS Build System**
|
||||
- **Issue:** cargo build failed with linker errors on macOS
|
||||
- **Fix:** Switched to maturin build system
|
||||
- **Impact:** Reliable builds on all platforms
|
||||
|
||||
### Stability Improvements
|
||||
|
||||
- **Numerical Stability:** MFG solver handles large gradients without overflow
|
||||
- **Convergence Reporting:** Fixed misleading "converged" message when hitting max_iter
|
||||
- **Python Solver:** Documented numerical instability in reference implementation
|
||||
|
||||
---
|
||||
|
||||
## 🚀 Performance Improvements
|
||||
|
||||
### Mean Field Games
|
||||
- **Speed:** 0.4 seconds for 100×100 grid (10,000 space-time points)
|
||||
- **Stability:** No NaN or overflow in Rust implementation
|
||||
- **Scalability:** Handles complex agent dynamics with congestion
|
||||
|
||||
### Build System
|
||||
- **Compilation:** ~20% faster with maturin vs cargo
|
||||
- **Wheel Size:** Optimized for abi3 compatibility
|
||||
- **Install Time:** Editable mode for faster development
|
||||
|
||||
---
|
||||
|
||||
## 📦 Technical Details
|
||||
|
||||
### Dependencies Updated
|
||||
|
||||
**Build Tools:**
|
||||
- Added: `maturin >= 1.10.0`
|
||||
- Recommended: Use maturin instead of setuptools
|
||||
|
||||
**Python Requirements:**
|
||||
- Minimum: Python 3.8+ (abi3 compatible)
|
||||
- NumPy: >= 1.20.0
|
||||
- Matplotlib: >= 3.5.0 (for visualizations)
|
||||
|
||||
### Module Structure
|
||||
|
||||
```
|
||||
optimizr/
|
||||
├── src/
|
||||
│ ├── mean_field/ # NEW: MFG algorithms
|
||||
│ │ ├── mod.rs
|
||||
│ │ ├── config.rs
|
||||
│ │ ├── solver.rs
|
||||
│ │ └── python_bindings.rs
|
||||
│ ├── hmm/ # HMM algorithms
|
||||
│ ├── mcmc/ # MCMC samplers
|
||||
│ ├── differential_evolution/
|
||||
│ └── lib.rs # Updated with MFG exports
|
||||
├── python/optimizr/ # Python wrappers
|
||||
│ ├── __init__.py # Updated exports
|
||||
│ ├── hmm.py
|
||||
│ ├── core.py
|
||||
│ └── ...
|
||||
└── examples/notebooks/ # All validated
|
||||
├── mean_field_games_tutorial.ipynb # NEW
|
||||
├── 01_hmm_tutorial.ipynb
|
||||
├── 02_mcmc_tutorial.ipynb
|
||||
├── 03_differential_evolution_tutorial.ipynb
|
||||
├── 03_optimal_control_tutorial.ipynb
|
||||
├── 04_real_world_applications.ipynb
|
||||
└── 05_performance_benchmarks.ipynb
|
||||
```
|
||||
|
||||
### API Changes
|
||||
|
||||
**New Exports:**
|
||||
```python
|
||||
from optimizr import MFGConfig, solve_mfg_1d_rust # NEW in 0.3.0
|
||||
from optimizr import HMM, mcmc_sample, differential_evolution # Existing
|
||||
```
|
||||
|
||||
**No Breaking Changes:**
|
||||
- All existing APIs remain compatible
|
||||
- New features are additive only
|
||||
|
||||
---
|
||||
|
||||
## 🔮 Future Roadmap
|
||||
|
||||
### Planned for v0.4.0
|
||||
- [ ] 2D Mean Field Games solver
|
||||
- [ ] Multi-population MFG
|
||||
- [ ] GPU acceleration (CUDA/ROCm)
|
||||
- [ ] Distributed MFG on clusters
|
||||
|
||||
### Under Consideration
|
||||
- [ ] Mean Field Control (MFC)
|
||||
- [ ] Mean Field Type Control (MFTC)
|
||||
- [ ] Stochastic games with jumps
|
||||
- [ ] Deep learning integration
|
||||
|
||||
---
|
||||
|
||||
## 🙏 Acknowledgments
|
||||
|
||||
This release includes:
|
||||
- Mean Field Games implementation inspired by Lasry-Lions and Achdou et al.
|
||||
- Finite difference schemes from Barles-Souganidis framework
|
||||
- Tutorial design following scikit-learn and scipy best practices
|
||||
|
||||
---
|
||||
|
||||
## 📊 Statistics
|
||||
|
||||
**Code Changes:**
|
||||
- **Files Added:** 15 (MFG module, tutorials, documentation)
|
||||
- **Files Modified:** 23 (notebooks, API, build system)
|
||||
- **Lines Added:** ~2,500
|
||||
- **Lines Removed:** ~300 (cleanup)
|
||||
|
||||
**Testing:**
|
||||
- All 7 example notebooks validated
|
||||
- Mean Field Games: 12/12 cells passing
|
||||
- HMM tutorial: 5/5 cells passing
|
||||
- Real-world app: Fixed and tested
|
||||
|
||||
**Documentation:**
|
||||
- 3 new comprehensive guides
|
||||
- 1 complete tutorial notebook
|
||||
- Audit report with findings
|
||||
|
||||
---
|
||||
|
||||
## 🔗 Links
|
||||
|
||||
- **Repository:** https://github.com/ThotDjehuty/optimiz-r
|
||||
- **Documentation:** See README.md and tutorial notebooks
|
||||
- **Issues:** https://github.com/ThotDjehuty/optimiz-r/issues
|
||||
- **Previous Release:** [v0.2.0](RELEASE_NOTES_v0.2.0.md)
|
||||
|
||||
---
|
||||
|
||||
## 💾 Installation
|
||||
|
||||
```bash
|
||||
# Install from source
|
||||
git clone https://github.com/ThotDjehuty/optimiz-r.git
|
||||
cd optimiz-r
|
||||
git checkout v0.3.0
|
||||
|
||||
# Build and install
|
||||
pip install maturin
|
||||
maturin develop --release --features python-bindings
|
||||
|
||||
# Verify installation
|
||||
python -c "from optimizr import MFGConfig, solve_mfg_1d_rust; print('✓ MFG module installed')"
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
**Full Changelog:** [v0.2.0...v0.3.0](https://github.com/ThotDjehuty/optimiz-r/compare/v0.2.0...v0.3.0)
|
||||
|
||||
**Happy Optimizing! 🚀**
|
||||
Reference in New Issue
Block a user