Files
DeepHealth/models_eval_example.json
Jiarui Li f231a2e4e5 Add model evaluation configurations for Delphi and SAP Delphi models
- Introduced a new JSON file `models_eval_example.json` containing evaluation configurations for various models.
- Included configurations for `delphi_fork` and `sap_delphi` models with different loss types and full covariance settings.
- Each model entry specifies the model name, type, loss type, full covariance flag, and checkpoint path.
2026-01-10 11:37:12 +08:00

30 lines
1.1 KiB
JSON

[
{
"name": "delphi_fork_discrete_time_cif_fullcov",
"model_type": "delphi_fork",
"loss_type": "discrete_time_cif",
"full_cov": true,
"checkpoint_path": "runs/delphi_fork_discrete_time_cif_sinusoidal_fullcov_20260109-222502/best_model.pt"
},
{
"name": "delphi_fork_exponential_fullcov",
"model_type": "delphi_fork",
"loss_type": "exponential",
"full_cov": true,
"checkpoint_path": "runs/delphi_fork_exponential_sinusoidal_fullcov_20260109-222502/best_model.pt"
},
{
"name": "sap_delphi_discrete_time_cif_fullcov",
"model_type": "sap_delphi",
"loss_type": "discrete_time_cif",
"full_cov": true,
"checkpoint_path": "runs/sap_delphi_discrete_time_cif_sinusoidal_fullcov_20260109-222502/best_model.pt"
},
{
"name": "sap_delphi_exponential_fullcov",
"model_type": "sap_delphi",
"loss_type": "exponential",
"full_cov": true,
"checkpoint_path": "runs/sap_delphi_exponential_sinusoidal_fullcov_20260109-222502/best_model.pt"
}
]