Link: https://www.kaggle.com/c/rsna-2023-abdominal-trauma-detection/overview

Problem Type: binary classification

Input: 3D CT scans

Output: a probability for each of the different possible injury types:

  • bowel_healthy,bowel_injury,extravasation_healthy,extravasation_injury,kidney_healthy,kidney_low,kidney_high,liver_healthy,liver_low,liver_high,spleen_healthy,spleen_low,spleen_high

Eval Metric: average of the sample weighted: log loss

Summary

Important notebooks/discussions

Solutions

Takeaways

  • It’s hard to build an end-to-end model that predicts the target classes.
    • so ppl built models to identify organs via image segmentation (1st to 3rd did this), then derive the target classes from that
    • tbh. large models + more data will prob eliminate this intermediate step