Pith. sign in

REVIEW 2 major objections 5 minor 30 references

A Multimodal Pipeline for Clinical Data Extraction: Applying Vision-Language Models to Scans of Transfusion Reaction Reports

T0 review · 2 major / 5 minor · reviewed 2026-08-16 · deepseek-v4-flash

Pith's one-line read The paper claims that a two-stage pipeline—checkbox detection followed by a vision-language model constrained to a predefined category list—can read scanned transfusion reaction reports at F1 scores of 91–93 percent, closely matching…

desk verdict The pipeline is real and open-source, but the headline F1 numbers are not computable from the gold standard as described, leaving the central claim unsubstantiated. read the letter →

arxiv 2504.20220 v1 pith:4QGU3OE3 submitted 2025-04-28 cs.CL cs.CV

classification cs.CLcs.CV
keywords transfusionreactionreportingvision-languagemodelscheckboxdetectionscanneddocumentparsingclinicaldataextractionopticalcharacterrecognitionopen-sourcepipelineformunderstanding
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

This paper is trying to establish that a fully automated, open-source pipeline can replace the manual transcription step in transfusion reaction reporting. The pipeline first locates checkbox areas on scanned forms with an object-detection model, then asks a vision-language model to read each cropped checkbox region and return only the checked categories from a predefined list. Against the annual summaries a human safety officer compiled from 2017 to 2024, the VLM route reaches F1 scores of 91.18 percent for recipient findings and 92.84 percent for suspected diagnoses, roughly six points above an OCR-plus-edit-distance baseline. If true, the result matters because hospitals subject to mandatory haemovigilance reporting could cut hours of manual data entry while keeping regulatory reports accurate, and the same recipe could be adapted to other checkbox-heavy paper forms.

What carries the argument

The load-bearing mechanism is a two-stage pipeline. First, a YOLO-style object-detection model trained on synthetic checkbox images finds contiguous checkbox areas on the scanned form; second, the vision-language model Pixtral-Large-Instruct-2411 is prompted with the cropped image of that checkbox region plus the full list of predefined findings or suspected diagnoses, and is told to output only categories that are actually checked. Constraining the output to the predefined category list is what converts a general-purpose VLM into a classifier and suppresses hallucinated labels; the Levenshtein-distance matching in the baseline is the comparison point, and barcode decoding is an auxiliary module that links reports to blood-product and patient stickers.

What would settle it

Take the 387 scanned reports and have two clinicians independently annotate each checkbox by hand, then compare the VLM pipeline's per-report output against this per-document gold standard; if the F1 scores fall materially below 91–93 percent, or if the annual totals reconstructed from pipeline output differ from the officer's summaries by more than the reported error rates, the claim would be shown to depend on the aggregate-level comparison rather than true per-report accuracy.

Watch

Extended reading notes

Core claim

The central discovery is that a vision-language model given the whole cropped checkbox region, together with an explicit list of the possible categories, can reliably determine which boxes were marked on real clinical scans. On 387 transfusion reaction reports spanning eight years, the VLM-based approach achieves 93.21 percent precision and 89.24 percent recall for the 24 recipient-finding categories, and 94.08 percent precision and 91.64 percent recall for the 13 suspected-diagnosis categories; averaged over both category sets it reaches 92.04 percent accuracy, compared with 85.17 percent for the OCR-plus-Levenshtein alternative. The authors also report that on 24 forms with faint, corrected, or ambiguous marks the VLM read 21 correctly versus 16 for the OCR baseline. The paper frames the result not as a replacement for human judgement in severe cases but as a third validation layer that can flag discrepancies for review.

Load-bearing premise

The evaluation assumes that the gold-standard annual summary tables, described as aggregated counts of reactions and findings, can be turned into reliable per-document labels for every report; if those tables are only yearly totals, the reported precision and recall may not measure per-document extraction accuracy.

Editorial extensions

If this is right

  • VLM-based extraction outperforms the OCR-plus-Levenshtein baseline on the same forms, with average accuracy 92.04 percent versus 85.17 percent, so adopting the VLM route roughly halves remaining extraction errors.
  • Because the extracted categories align closely with the annually compiled gold-standard summaries, the pipeline can take over routine category transcription while a human reviews low-confidence or ambiguous outputs.
  • The method's robustness to faint, corrected, or partially marked checkboxes (21 of 24 difficult cases correct, versus 16 for OCR) suggests it can hold up under real-world scan quality variation.
  • The pipeline is designed to be reconfigurable: changing the predefined category list and the cropped checkbox regions should allow adaptation to other checkbox-rich document types in languages supported by the underlying VLM.
  • Barcode decoding at roughly 90–93 percent accuracy provides a separate module for linking each report to the correct blood product and patient sticker, which would be needed for end-to-end integration with hospital information systems.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • The same constrained-prompt recipe could transfer to other checkbox-rich regulatory forms, such as adverse drug event reports, lab requisitions, or quality audit sheets, since the only form-specific pieces are the detector, the category list, and the cropped regions.
  • If the pipeline runs in production, the 89–94 percent recall range implies that roughly one in ten checked categories would still need human confirmation, so the proposed third-validation-layer use is essential and an institution should budget for review of the lowest-confidence outputs.
  • The reported gap between VLM and OCR on faint marks (87.5 vs 66.7 percent) suggests the VLM is using global layout context, not just text; a focused test on deliberately degraded scans could measure how much of the gain comes from context rather than stronger visual recognition.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

2 major / 5 minor

Summary. The paper presents an open-source pipeline for extracting checkbox data from scanned transfusion reaction reports. The pipeline uses a YOLOv8-based checkbox detector to locate checkbox regions, then applies either an OCR-plus-Levenshtein baseline or a vision-language model (Pixtral-Large-Instruct-2411) with category prompts to determine which findings and suspected diagnoses are checked. The authors report that the VLM approach achieves F1-scores of 91.18% for findings and 92.84% for suspected diagnoses, outperforming the OCR baseline, and claim that the extracted data aligns with the annual gold-standard summaries compiled by the hospital's Graduated Plan Officer.

Significance. If the reported performance were properly substantiated, this work would offer a practical, self-hosted alternative to manual transcription of checkbox-heavy clinical forms, with a clear use case in transfusion reaction reporting. The integration of a VLM with predefined category lists is a sensible design that avoids per-form template engineering, and the open-source release supports reproducibility and adaptation. However, the evaluation protocol is underspecified in a way that undermines the headline claims: the stated gold standard consists of annual aggregate counts, whereas the reported precision, recall, and F1 are per-document classification metrics. Until this mismatch is resolved, the central contribution cannot be assessed.

major comments (2)
  1. [Section III-A; Tables II-III] The gold standard is described as 'annual summary tables' containing 'all aggregated counts of transfusion reactions and their categorized findings as well as suspected diagnoses.' Precision, recall, and F1 are per-document classification metrics, yet the paper never explains how per-document ground-truth labels were derived from these annual aggregates. If the comparison was performed only at the level of aggregate counts per category, then false positives and false negatives across different reports could cancel out, yielding seemingly high scores while per-document extraction is far less accurate. As written, the numbers in Tables II and III cannot be computed from the described gold standard, and the central claim of high per-document extraction quality is not substantiated. The authors must specify the exact evaluation unit and protocol, and provide per-document ground truth or recompute the metrics appropriately for aggregated data.
  2. [Section V-B; Figure 1 flow] It is unclear whether the reported category-mapping metrics include the YOLO-based checkbox detection step or are computed only on the cropped checkbox areas fed to the OCR/VLM. The pipeline as a whole depends on correctly detecting the checkbox regions; if that step is error-prone, the end-to-end performance will be lower than reported. The paper should state explicitly whether Table II and Table III reflect the full pipeline or only the classification component, and if only the latter, the detection accuracy on the evaluated corpus should be reported as part of the end-to-end assessment.
minor comments (5)
  1. [Section VI, first bullet] In the sentence 'The VLM-based method demonstrate its capacity...,' the verb should be 'demonstrates' to agree with the singular subject.
  2. [Table IV] Please clarify how 'Accuracy (Avg)' is computed from the per-category sets; the paper defines precision, recall, and F1 in Tables II and III but does not define this average accuracy measure.
  3. [Reference [7]] The reference [7] cites a paper on 'Pixtral 12B,' but the text uses 'Pixtral-Large-Instruct-2411.' These appear to be different models; please provide the correct citation for the model actually used.
  4. [Section V-A] The barcode detection results are not used by the checkbox extraction pipeline, so their placement in the Results section is somewhat tangential; consider moving them to a separate section or briefly explaining their relevance to the overall workflow.
  5. [Abstract and Conclusion] The phrase 'compared against annually compiled gold-standards' is ambiguous about the level of comparison (annual totals vs per-report). Once the evaluation protocol is clarified, please adjust the wording to match the actual comparison unit.

Circularity Check

0 steps flagged · score 0.0 of 10

No circular derivation: the pipeline's category outputs are compared against an independent human-compiled gold standard, with zero-shot VLM prompting and no fitted parameters.

full rationale

The paper's central claim is that the VLM-based pipeline extracts checkbox categories from scanned transfusion reaction reports with precision/recall comparable to manual compilation. The extraction pipeline uses YOLO checkbox detection, PaddleOCR or Pixtral VLM prompting, and predefined category lists taken from the form (Section IV-B). The VLM is applied zero-shot; no parameter is fitted to the gold-standard tables. The YOLO detection model was trained on synthetic images and validated on 150 human-annotated documents, not on the evaluation gold standard. The gold standard is produced independently by the Graduated Plan Officer (Section III-A), and the paper's reported comparisons are against that external human compilation. No load-bearing argument reduces to a self-citation: the cited external models, datasets, and prior work are standard references, and the authors' own open-source repository is not used as proof of correctness. The only substantive concern, raised in the skeptic headline, is that the gold standard is described as annual aggregate tables, which may not support the reported per-document precision/recall if taken literally; however, that is a data-validity or evaluation-reporting issue, not circularity. The extraction outputs are not defined in terms of the gold-standard values, and no equation or fitted parameter makes the prediction equivalent to its input by construction. Therefore no circular step is exhibited.

Assumptions & free parameters 2 free parameters · 4 assumptions · 0 invented entities

The pipeline introduces no new entities or fitted constants beyond standard model weights and two unreported thresholds. The main assumptions are the accuracy of the human gold standard, the generalization of the trained YOLO detector, and the zero-shot reliability of Pixtral.

free parameters (2)
  • OCR checkbox fill threshold = not specified
    A configurable threshold determines which detected checkbox regions are treated as filled in Approach 1; its value affects the OCR baseline F1.
  • Levenshtein distance cutoff = not specified
    The maximum edit distance allowed for matching OCR output to a predefined category; no value is reported.
assumptions (4)
  • domain assumption The annually compiled gold-standard tables produced by the Graduated Plan Officer are accurate ground truth for checked categories.
    The evaluation metrics are computed against these tables; if they contain errors or are only aggregated counts, the reported precision and recall may not reflect per-document extraction quality. See Section III-A.
  • domain assumption The YOLOv8 checkbox detector trained on synthetic images generalizes to real scanned forms.
    The detector's bounding boxes define the crops fed to the VLM; systematic localization failure would reduce extraction accuracy. See Section IV.
  • domain assumption Pixtral-Large-Instruct-2411 can reliably identify checked categories from image snippets using only a prompt and a predefined category list.
    The VLM is used zero-shot without fine-tuning; its behavior on this form type is not independently validated beyond the reported test set. See Section IV-B.
  • standard math MOD 11.10 check digit algorithm validates barcode strings.
    Used to validate blood product barcodes in Section IV-A; this is a standard algorithm, not a paper-specific assumption.

how reviews work

0 comments
Cite this review

Pith. "Pith review of A Multimodal Pipeline for Clinical Data Extraction: Applying Vision-Language Models to Scans of Transfusion Reaction Reports." pith.science (2026). https://pith.science/paper/4QGU3OE3

@misc{pith2026250420220,
  author       = {Pith},
  title        = {Pith review of: A Multimodal Pipeline for Clinical Data Extraction: Applying Vision-Language Models to Scans of Transfusion Reaction Reports},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/4QGU3OE3}},
  note         = {Machine review of arXiv:2504.20220}
}
read the original abstract

Despite the growing adoption of electronic health records, many processes still rely on paper documents, reflecting the heterogeneous real-world conditions in which healthcare is delivered. The manual transcription process is time-consuming and prone to errors when transferring paper-based data to digital formats. To streamline this workflow, this study presents an open-source pipeline that extracts and categorizes checkbox data from scanned documents. Demonstrated on transfusion reaction reports, the design supports adaptation to other checkbox-rich document types. The proposed method integrates checkbox detection, multilingual optical character recognition (OCR) and multilingual vision-language models (VLMs). The pipeline achieves high precision and recall compared against annually compiled gold-standards from 2017 to 2024. The result is a reduction in administrative workload and accurate regulatory reporting. The open-source availability of this pipeline encourages self-hosted parsing of checkbox forms.

Figures

Figures reproduced from arXiv: 2504.20220 by the authors.

Figure 1
Figure 1. Illustration of the YOLO-based checkbox detection approach applied to a complete transfusion reaction report. Each blue bounding [PITH_FULL_IMAGE:figures/full_fig_p002_1.png] view at source ↗

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

30 extracted references · 28 canonical work pages

  1. [1]

    Haemovigilance: an effective tool for improving transfusion practice,

    R. R. P. de Vries, J.-C. Faber, P. F. W. Strengers, and M. of the Board of the International Haemovigilance Network, “Haemovigilance: an effective tool for improving transfusion practice,” Vox Sanguinis, vol. 100, no. 1, pp. 60–67, 2011

  2. [2]

    The impact of electronic health record systems on clinical documentation times: A systematic review,

    L. A. Baumann, J. Baker, and A. G. Elshaug, “The impact of electronic health record systems on clinical documentation times: A systematic review,” Health Policy, vol. 122, no. 8, pp. 827– 836, 2018

  3. [3]

    Exploring the persis- tence of paper with the electronic health record,

    J. J. Saleem, A. L. Russ, C. F. Justice, H. Hagg, P. R. Ebright, P. A. Woodbridge, and B. N. Doebbeling, “Exploring the persis- tence of paper with the electronic health record,” International Journal of Medical Informatics , vol. 78, no. 9, pp. 618–628, 2009

  4. [4]

    Crit- ical analysis of Big Data challenges and analytical methods,

    U. Sivarajah, M. M. Kamal, Z. Irani, and V . Weerakkody, “Crit- ical analysis of Big Data challenges and analytical methods,” Journal of Business Research , vol. 70, pp. 263–286, 2017

  5. [5]

    The German Haemovigilance System–reports of serious adverse transfusion reactions between 1997 and 2007,

    B. Keller-Stanislawski, A. Lohmann, S. G ¨unay, M. Heiden, and M. B. Funk, “The German Haemovigilance System–reports of serious adverse transfusion reactions between 1997 and 2007,” Transfusion Medicine, vol. 19, no. 6, pp. 340–349, 2009

  6. [6]

    Vision-Language Models for Vision Tasks: A Survey,

    J. Zhang, J. Huang, S. Jin, and S. Lu, “Vision-Language Models for Vision Tasks: A Survey,” IEEE Transactions on Pattern Analysis and Machine Intelligence , vol. 46, no. 8, pp. 5625– 5644, 2024

  7. [7]

    Pixtral 12B,

    P. Agrawal, S. Antoniak, E. B. Hanna, B. Bout, D. S. Chaplot, J. Chudnovsky, D. Costa, B. D. Monicault, S. Garg, T. Gervet, S. Ghosh, A. H ´eliou, P. Jacob, A. Q. Jiang, K. Khandelwal, T. Lacroix, G. Lample, D. de Las Casas, T. Lavril, T. L. Scao, A. Lo, W. Marshall, L. Martin, A. Mensch, P. Muddireddy, V . Nemychnikova, M. Pellat, P. von Platen, N. Raghu...

  8. [8]

    ”Video OCR: indexing digital news libraries by recognition of superimposed captions

    T. Sato, T. Kanade, E. K. Hughes, M. A. Smith, and S. Satoh, “”Video OCR: indexing digital news libraries by recognition of superimposed captions”,” Multimedia Systems, vol. 7, no. 5, pp. 385–395, Sep 1999

Show all 30 references
  1. [9]

    System reliability, performance and trust in adaptable automation,

    A. Chavaillaz, D. Wastell, and J. Sauer, “System reliability, performance and trust in adaptable automation,” Applied Er- gonomics, vol. 52, pp. 333–342, 2016

  2. [10]

    ”A Detailed Review on Text Extraction Using Optical Charac- ter Recognition

    C. Thorat, A. Bhat, P. Sawant, I. Bartakke, and S. Shirsath, “”A Detailed Review on Text Extraction Using Optical Charac- ter Recognition”,” in ICT Analysis and Applications , S. Fong, N. Dey, and A. Joshi, Eds. Singapore: Springer Nature Singapore, 2022, pp. 719–728

  3. [11]

    Historical review of OCR research and development,

    S. Mori, C. Y . Suen, and K. Yamamoto, “Historical review of OCR research and development,” Proc. IEEE, vol. 80, no. 7, pp. 1029–1058, 1992

  4. [12]

    An automated data verification approach for improving data qual- ity in a clinical registry,

    Q. Tian, M. Liu, L. Min, J. An, X. Lu, and H. Duan, “An automated data verification approach for improving data qual- ity in a clinical registry,” Computer Methods and Programs in Biomedicine , vol. 181, p. 104840, 2019, sI: Data Quality Assessment

  5. [13]

    Checkbox Detection on Rwandan Perioperative Flowsheets using Convolutional Neural Network,

    E. Murphy, S. Samuel, J. Cho, W. Adorno, M. Durieux, D. Brown, and C. Ndaribitse, “Checkbox Detection on Rwandan Perioperative Flowsheets using Convolutional Neural Network,” in 2021 Systems and Information Engineering Design Symposium (SIEDS), 2021, pp. 1–6

  6. [14]

    Optical Character Recognition for Medical Records Digitization with Deep Learning,

    M. A. Zaryab and C. R. Ng, “Optical Character Recognition for Medical Records Digitization with Deep Learning,” in 2023 IEEE International Conference on Image Processing (ICIP) , 2023, pp. 3260–3263

  7. [15]

    An Overview of the Tesseract OCR Engine,

    R. Smith, “An Overview of the Tesseract OCR Engine,” in ICDAR ’07: Proceedings of the Ninth International Conference on Document Analysis and Recognition. Washington, DC, USA: IEEE Computer Society, 2007, pp. 629–633

  8. [16]

    Long Short-Term Memory,

    S. Hochreiter and J. Schmidhuber, “Long Short-Term Memory,” Neural Comput., vol. 9, no. 8, pp. 1735–1780, 1997

  9. [17]

    Attention is All you Need,

    A. Vaswani, N. Shazeer, N. Parmar, J. Uszkoreit, L. Jones, A. N. Gomez, L. Kaiser, and I. Polosukhin, “Attention is All you Need,” in Advances in Neural Information Processing Sys- tems 30: Annual Conference on Neural Information Processing Systems 2017, December 4-9, 2017, Lo...

  10. [18]

    Vision-Language Models for Vision Tasks: A Survey,

    J. Zhang, J. Huang, S. Jin, and S. Lu, “Vision-Language Models for Vision Tasks: A Survey,” IEEE Trans. Pattern Anal. Mach. Intell., vol. 46, no. 8, pp. 5625–5644, 2024

  11. [19]

    LayoutLM: Pre-training of Text and Layout for Document Image Understanding,

    Y . Xu, M. Li, L. Cui, S. Huang, F. Wei, and M. Zhou, “LayoutLM: Pre-training of Text and Layout for Document Image Understanding,” in KDD ’20: The 26th ACM SIGKDD Conference on Knowledge Discovery and Data Mining, Virtual Event, CA, USA, August 23-27, 2020 , R. Gupta, Y . Liu...

  12. [20]

    ”Lay- outLMv2: Multi-modal Pre-training for Visually-rich Document Understanding

    Y . Xu, Y . Xu, T. Lv, L. Cui, F. Wei, G. Wang, Y . Lu, D. Flo- rencio, C. Zhang, W. Che, M. Zhang, and L. Zhou, “”Lay- outLMv2: Multi-modal Pre-training for Visually-rich Document Understanding”,” in Proceedings of the 59th Annual Meeting of the Association for Computational ...

  13. [21]

    FUNSD: A Dataset for Form Understanding in Noisy Scanned Documents,

    G. Jaume, H. K. Ekenel, and J. Thiran, “FUNSD: A Dataset for Form Understanding in Noisy Scanned Documents,” in 2nd International Workshop on Open Services and Tools for Docu- ment Analysis, OST@ICDAR 2019, Sydney, Australia, September 22-25, 2019. IEEE, 2019, pp. 1–6

  14. [22]

    OCR-Free Document Under- standing Transformer,

    G. Kim, T. Hong, M. Yim, J. Nam, J. Park, J. Yim, W. Hwang, S. Yun, D. Han, and S. Park, “OCR-Free Document Under- standing Transformer,” in Computer Vision - ECCV 2022 - 17th European Conference, Tel Aviv, Israel, October 23-27, 2022, Proceedings, Part XXVIII, ser. Lecture No...

  15. [23]

    PaLM-E: An Embodied Multimodal Language Model,

    D. Driess, F. Xia, M. S. M. Sajjadi, C. Lynch, A. Chowdhery, B. Ichter, A. Wahid, J. Tompson, Q. Vuong, T. Yu, W. Huang, Y . Chebotar, P. Sermanet, D. Duckworth, S. Levine, V . Van- houcke, K. Hausman, M. Toussaint, K. Greff, A. Zeng, I. Mor- datch, and P. Florence, “PaLM-E: A...

  16. [24]

    Faster R-CNN: Towards Real-Time Object Detection with Region Proposal Networks,

    S. Ren, K. He, R. B. Girshick, and J. Sun, “Faster R-CNN: Towards Real-Time Object Detection with Region Proposal Networks,” IEEE Trans. Pattern Anal. Mach. Intell. , vol. 39, no. 6, pp. 1137–1149, 2017

  17. [25]

    You Only Look Once: Unified, Real-Time Object Detection,

    J. Redmon, S. K. Divvala, R. B. Girshick, and A. Farhadi, “You Only Look Once: Unified, Real-Time Object Detection,” in 2016 IEEE Conference on Computer Vision and Pattern Recognition, CVPR 2016, Las Vegas, NV , USA, June 27-30, 2016 . IEEE Computer Society, 2016, pp. 779–788

  18. [26]

    End-to-End Object Detection with Trans- formers,

    N. Carion, F. Massa, G. Synnaeve, N. Usunier, A. Kirillov, and S. Zagoruyko, “End-to-End Object Detection with Trans- formers,” in Computer Vision - ECCV 2020 - 16th European Conference, Glasgow, UK, August 23-28, 2020, Proceedings, Part I , ser. Lecture Notes in Computer Scie...

  19. [27]

    VQA: visual question answering,

    S. Antol, A. Agrawal, J. Lu, M. Mitchell, D. Batra, C. L. Zitnick, and D. Parikh, “VQA: visual question answering,” in 2015 IEEE International Conference on Computer Vision, ICCV 2015, Santiago, Chile, December 7-13, 2015 . IEEE Computer Society, 2015, pp. 2425–2433

  20. [28]

    Evaluation of Deep Convolutional Nets for Document Image Classification and Retrieval,

    A. W. Harley, A. Ufkes, and K. G. Derpanis, “Evaluation of Deep Convolutional Nets for Document Image Classification and Retrieval,” in International Conference on Document Analysis and Recognition (ICDAR) , 2015

  21. [29]

    PP-OCRv2: Bag of Tricks for Ultra Lightweight OCR System,

    Y . Du, C. Li, R. Guo, C. Cui, W. Liu, J. Zhou, B. Lu, Y . Yang, Q. Liu, X. Hu, D. Yu, and Y . Ma, “PP-OCRv2: Bag of Tricks for Ultra Lightweight OCR System,” CoRR, vol. abs/2109.03144 v2, 2021

  22. [30]

    Binary codes capable of correcting deletions, insertions, and reversals,

    V . I. Levenshtein, “Binary codes capable of correcting deletions, insertions, and reversals,” Soviet physics. Doklady , vol. 10, pp. 707–710, 1965

Pith tools

Reviewed August 16, 2026 · model on record in the stance chip above.