Upload __init__.py with huggingface_hub
Browse files- __init__.py +31 -0
__init__.py
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""
|
| 2 |
+
Physics-Informed Bayesian Optimization Platform (PIBO)
|
| 3 |
+
|
| 4 |
+
A platform for designing experiments using physics-informed surrogate models
|
| 5 |
+
with Bayesian optimization. Supports BoTorch, AX, GPyTorch, and BoFire backends.
|
| 6 |
+
|
| 7 |
+
Core concept: Use physical models as structured priors (mean functions) for
|
| 8 |
+
Gaussian Processes, so the GP learns residuals between physics predictions
|
| 9 |
+
and real observations. This dramatically improves sample efficiency.
|
| 10 |
+
"""
|
| 11 |
+
|
| 12 |
+
from physics_informed_bo.models.base import SurrogateModel
|
| 13 |
+
from physics_informed_bo.models.physics_model import PhysicsModel, PhysicsMeanFunction
|
| 14 |
+
from physics_informed_bo.models.hybrid_model import HybridSurrogate
|
| 15 |
+
from physics_informed_bo.experiment.designer import ExperimentDesigner
|
| 16 |
+
from physics_informed_bo.experiment.parameter_space import ParameterSpace, ContinuousParameter, CategoricalParameter
|
| 17 |
+
from physics_informed_bo.experiment.campaign import OptimizationCampaign
|
| 18 |
+
|
| 19 |
+
__version__ = "0.1.0"
|
| 20 |
+
|
| 21 |
+
__all__ = [
|
| 22 |
+
"SurrogateModel",
|
| 23 |
+
"PhysicsModel",
|
| 24 |
+
"PhysicsMeanFunction",
|
| 25 |
+
"HybridSurrogate",
|
| 26 |
+
"ExperimentDesigner",
|
| 27 |
+
"ParameterSpace",
|
| 28 |
+
"ContinuousParameter",
|
| 29 |
+
"CategoricalParameter",
|
| 30 |
+
"OptimizationCampaign",
|
| 31 |
+
]
|