Skip to content

Commit

Permalink
feat(L2GFeatureMatrix): track missingness rate for each feature
Browse files Browse the repository at this point in the history
  • Loading branch information
ireneisdoomed committed Dec 13, 2023
1 parent e69c47e commit dc4bb53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/otg/method/l2g/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def log_to_wandb(
wandb_run.log(gs_counts_dict)
# Missingness rates
wandb_run.log(
"missingnessRates", training_data.calculate_feature_missingness_rate()
{"missingnessRates": training_data.calculate_feature_missingness_rate()}
)

@classmethod
Expand Down

0 comments on commit dc4bb53

Please sign in to comment.