| """ | |
| CHG Algorithm Package | |
| A Python package implementing the CHG (Covariance-based Hilbert Geometry) algorithm | |
| for Gaussian Process regression with enhanced multi-head attention mechanisms. | |
| """ | |
| from .core import CHG, CHGOptimizer, run_chg_experiment | |
| __version__ = "1.0.0" | |
| __author__ = "CHG Algorithm Team" | |
| __email__ = "chg@example.com" | |
| __all__ = [ | |
| 'CHG', | |
| 'CHGOptimizer', | |
| 'run_chg_experiment' | |
| ] |