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:
30
models_eval_example.json
Normal file
30
models_eval_example.json
Normal 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"
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user