guanwencan's picture
Upload 9 files
69bf174 verified
raw
history blame contribute delete
427 Bytes
"""
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'
]