Skip to content
This repository has been archived by the owner on May 1, 2023. It is now read-only.

Commit

Permalink
fix: set default pred_time_uuid_col_name (#503)
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinBernstorff authored Apr 27, 2023
2 parents 84267fc + 483ec37 commit a65ad6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/psycop_model_training/config_schemas/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class ColumnNamesSchema(BaseModel):
pred_timestamp: str = "timestamp" # Column name for prediction times
outcome_timestamp: str = "outc_timestamp" # Column name for outcome timestamps
id: str = "dw_ek_borger" # Citizen colnames # noqa
pred_time_uuid: str = "pred_time_uuid" # Unique identifier for each prediction, useful if you later want to join the predictions with the original data.
pred_time_uuid: str = "prediction_time_uuid" # Unique identifier for each prediction, useful if you later want to join the predictions with the original data.
age: str = "pred_age_in_years" # Name of the age column
is_female: str = "pred_sex_female" # Name of the sex column
exclusion_timestamp: Optional[
Expand Down

0 comments on commit a65ad6f

Please sign in to comment.