Upload config.json with huggingface_hub
Browse files- config.json +54 -0
config.json
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model_type": "thermal_energy_based_model",
|
| 3 |
+
"version": "0.1.1",
|
| 4 |
+
"framework": "thrml",
|
| 5 |
+
"task": "mortality_prediction",
|
| 6 |
+
"thermal_config": {
|
| 7 |
+
"sampling": {
|
| 8 |
+
"default_samples": 1000,
|
| 9 |
+
"burn_in": 200,
|
| 10 |
+
"thinning": 2,
|
| 11 |
+
"blocking_strategy": "demographic"
|
| 12 |
+
},
|
| 13 |
+
"model": {
|
| 14 |
+
"energy_based": true,
|
| 15 |
+
"uncertainty_quantification": true,
|
| 16 |
+
"demographic_interactions": true
|
| 17 |
+
},
|
| 18 |
+
"performance": {
|
| 19 |
+
"gpu_acceleration": true,
|
| 20 |
+
"jax_backend": true,
|
| 21 |
+
"memory_efficient": true
|
| 22 |
+
}
|
| 23 |
+
},
|
| 24 |
+
"performance_metrics": {
|
| 25 |
+
"baseline_accuracy": 0.85,
|
| 26 |
+
"uncertainty_coverage": 0.95,
|
| 27 |
+
"demographic_factors": 4.0,
|
| 28 |
+
"sampling_efficiency": 0.92
|
| 29 |
+
},
|
| 30 |
+
"deployment_timestamp": "2025-10-29T19:52:01.188983",
|
| 31 |
+
"model_architecture": {
|
| 32 |
+
"sampling_method": "block_gibbs",
|
| 33 |
+
"energy_based_model": true,
|
| 34 |
+
"uncertainty_quantification": true,
|
| 35 |
+
"demographic_factors": [
|
| 36 |
+
"age",
|
| 37 |
+
"country",
|
| 38 |
+
"sex",
|
| 39 |
+
"year"
|
| 40 |
+
],
|
| 41 |
+
"output_types": [
|
| 42 |
+
"life_expectancy",
|
| 43 |
+
"death_probability"
|
| 44 |
+
]
|
| 45 |
+
},
|
| 46 |
+
"requirements": [
|
| 47 |
+
"thrml>=0.1.3",
|
| 48 |
+
"jax>=0.8.0",
|
| 49 |
+
"jaxlib>=0.8.0",
|
| 50 |
+
"networkx>=3.5",
|
| 51 |
+
"numpy>=2.3.0",
|
| 52 |
+
"pandas>=2.3.0"
|
| 53 |
+
]
|
| 54 |
+
}
|