File size: 427 Bytes
69bf174 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | """
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'
] |