gpclarity 0.0.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- gpclarity/__init__.py +190 -0
- gpclarity/_version.py +3 -0
- gpclarity/data_influence.py +501 -0
- gpclarity/exceptions.py +46 -0
- gpclarity/hyperparam_tracker.py +718 -0
- gpclarity/kernel_summary.py +285 -0
- gpclarity/model_complexity.py +619 -0
- gpclarity/plotting.py +337 -0
- gpclarity/uncertainty_analysis.py +647 -0
- gpclarity/utils.py +411 -0
- gpclarity-0.0.2.dist-info/METADATA +248 -0
- gpclarity-0.0.2.dist-info/RECORD +14 -0
- gpclarity-0.0.2.dist-info/WHEEL +4 -0
- gpclarity-0.0.2.dist-info/licenses/LICENSE +37 -0
gpclarity/exceptions.py
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Custom exceptions for GPClarity.
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
class GPClarityError(Exception):
|
|
7
|
+
"""Base exception for all GPClarity errors."""
|
|
8
|
+
pass
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class InfluenceError(GPClarityError):
|
|
12
|
+
"""Raised when influence computation fails."""
|
|
13
|
+
pass
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
class KernelError(GPClarityError):
|
|
17
|
+
"""Raised when kernel operations fail."""
|
|
18
|
+
pass
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
class ModelError(GPClarityError):
|
|
22
|
+
"""Raised when model validation fails."""
|
|
23
|
+
pass
|
|
24
|
+
|
|
25
|
+
class TrackingError(GPClarityError):
|
|
26
|
+
"""Raised when parameter tracking fails."""
|
|
27
|
+
pass
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
class OptimizationError(GPClarityError):
|
|
31
|
+
"""Raised when optimization fails."""
|
|
32
|
+
pass
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
class KernelError(GPClarityError):
|
|
36
|
+
"""Raised when kernel operations or interpretation fails."""
|
|
37
|
+
pass
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
class ComplexityError(GPClarityError):
|
|
41
|
+
"""Raised when complexity computation or analysis fails."""
|
|
42
|
+
pass
|
|
43
|
+
|
|
44
|
+
class UncertaintyError(GPClarityError):
|
|
45
|
+
"""Raised when uncertainty quantification or analysis fails."""
|
|
46
|
+
pass
|