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.
This commit is contained in:
2026-01-10 11:37:12 +08:00
parent 3f15301f26
commit f231a2e4e5
2 changed files with 1583 additions and 0 deletions

30
models_eval_example.json Normal file
View File

@@ -0,0 +1,30 @@
[
{
"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"
}
]