Upload thermal_init.py with huggingface_hub
Browse files- thermal_init.py +30 -0
thermal_init.py
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""
|
| 2 |
+
THRML Integration Module for Morbid AI
|
| 3 |
+
======================================
|
| 4 |
+
|
| 5 |
+
This module integrates THRML (Thermodynamic HypergRaphical Model Library)
|
| 6 |
+
with Morbid AI to provide probabilistic mortality modeling with uncertainty
|
| 7 |
+
quantification.
|
| 8 |
+
|
| 9 |
+
Components:
|
| 10 |
+
- models: Energy-based models for mortality prediction
|
| 11 |
+
- graph: Graph construction utilities for mortality data
|
| 12 |
+
- sampling: THRML sampling implementations
|
| 13 |
+
- api: API integration with existing Morbid infrastructure
|
| 14 |
+
|
| 15 |
+
Version: 0.1.0
|
| 16 |
+
Author: Morbid AI Development Team
|
| 17 |
+
"""
|
| 18 |
+
|
| 19 |
+
from thermal.models.life_expectancy import LifeExpectancyEBM
|
| 20 |
+
from thermal.models.death_probability import DeathProbabilityGraph
|
| 21 |
+
from thermal.graph.mortality_graph import MortalityGraphBuilder
|
| 22 |
+
from thermal.api.thermal_client import ThermalAIClient
|
| 23 |
+
|
| 24 |
+
__version__ = "0.1.1"
|
| 25 |
+
__all__ = [
|
| 26 |
+
"LifeExpectancyEBM",
|
| 27 |
+
"DeathProbabilityGraph",
|
| 28 |
+
"MortalityGraphBuilder",
|
| 29 |
+
"ThermalAIClient"
|
| 30 |
+
]
|