ConceptioArchivearXiv CS
arXiv CSopen access

Confidence-Aware Automated Assessment of Student-Drawn Scientific Models

Unknown · 2026 · arxiv_cs
arXiv CS · Papers · License: Open Access · 2026
Open Source ↗Direct PDF ↓
artificialintelligenceknowledgerepresentationreasoning
artificial intelligence, reasoning, knowledge representation

Confidence-Aware Automated Assessment of Student-Drawn Scientific Models Luyang Fang1,2[0009−0003−2465−6864] , Yingchuan Zhang2[0000−0002−4248−5128] , Jongchan Park1[0000−0002−3257−125X] , Zhaoji Wang1[0009−0007−2254−4438] , Ping Ma2[0000−0002−5728−3596] , and Xiaoming Zhai1[0000−0003−4519−1931]⋆ AI4STEM Education Center, Athens, GA, USA {Luyang.Fang,Jongchan.Park,zhaojiwang,Xiaoming.Zhai}@uga.edu 2 Department of Statistics, University of Georgia, Athens, GA, USA {Yingchuan.Zhang,pingma}@uga.edu

arXiv:2606.20264v1 [cs.AI] 18 Jun 2026

1

Abstract. Student-generated drawings are widely used in science education to assess learners’ conceptual understanding in modeling-based tasks aligned with the Next Generation Science Standards (NGSS). However, scoring such drawings requires expert human judgment to interpret complex visual representations, making large-scale assessment costly to implement and sustain in classroom settings. In this work, we study automated scoring of student-generated scientific drawings using a visionbased model. We evaluate a Vision Transformer (ViT) with parameterefficient adaptation and propose a confidence-aware scoring framework that derives response-level confidence from test-time predictive distributions. This confidence signal enables selective automation by scoring high-confidence responses automatically while deferring uncertain cases for human review. Experiments on six NGSS-aligned middle school assessment items show that the proposed approach improves scoring reliability while supporting a practical trade-off between automated coverage and scoring risk, highlighting the value of confidence-aware methods for trustworthy educational assessment. Keywords: Student-Generated Drawings · Automated Scoring · ConfidenceAware Scoring · Vision Transformers · Science Education

1

Introduction

In science education, assessing scientific modeling practice involves eliciting and interpreting evidence of students’ understanding through a combination of drawings and written explanations [12]. Since drawings can externalize structures, relationships, and mechanisms that may remain implicit in text-only responses, modeling assessments often rely on rubric-based evaluation of student-generated drawings alongside written explanations [16]. However, consistent rubric-based scoring of drawings requires careful human judgment and sustained attention to ⋆

Corresponding author. [email protected]

2

L. Fang et al.

scoring quality; in everyday classroom contexts, the time, expertise, and attention required for consistent and reliable scoring are often limited [12]. At scale, reliance on human scoring becomes a major hurdle because scoring students’ drawings is labor-intensive and costly [13]. These constraints have motivated automated scoring approaches that aim to support rubric-aligned interpretation of student drawings more efficiently [11]. Prior research has demonstrated the feasibility of computational analysis of student-generated visual artifacts. Early work focused on extracting quantifiable visual features from drawings and linking them to rubric-aligned scoring criteria to support automated assessment [13, 15]. More recently, advances in artificial intelligence have enabled modern models, including Vision Transformer (ViT) architectures [6], to directly learn scoring-relevant representations from student responses [11, 14, 3, 10]. Despite these advances, existing automated scoring approaches typically produce only a single score or proficiency label, offering limited support for how such outputs should be used in instructional decision-making. In formative assessment contexts, teachers must judge not only the predicted score but also its reliability, particularly for visually complex and ambiguous student drawings. The absence of explicit confidence information makes it difficult to determine when automated scores can be trusted and when manual review is warranted, limiting the practical usability of automated assessment systems [2, 5]. To address these gaps, we propose a confidence-aware vision-based approach for automated scoring of student-generated scientific drawings. Building on the confidence-guided inference research [1, 4, 17], the approach derives a responselevel confidence score from the stability of a ViT-based model’s predictions under semantic-preserving test-time perturbations. We further incorporate test-time selection with selective trust to emphasize reliable perturbed predictions when forming the final scoring decision. The resulting confidence score enables selective automated scoring: the system can auto-score responses with strong predictive support while deferring low-confidence cases for human review, helping teachers triage responses and calibrate reliance on automated scores in practice. Our study evaluates the proposed framework on student-generated drawings from six NGSS-aligned middle school science modeling assessment items with rubric-based proficiency levels. Empirically, the approach improves agreement with expert scoring and provides an intuitive confidence score indicating when automated predictions are reliable, supporting informed decisions about when human review is needed in classroom assessment.

2

Methodology

Problem Setup. We consider an automated scoring task with training data n D = {(xi , yi )}i=1 , where xi ∈ X is a student-generated drawing represented as an image and yi ∈ {1, . . . , K} is the corresponding rubric-based proficiency level. We train a scoring model fθ : X → [0, 1]K , where fθ (x) = (p1 (x), . . . , pK (x)) is a probability distribution over the K score levels.

Confidence-Aware Scoring of Student Drawings

3

In educational assessment settings, automated scoring systems must decide not only what score to assign, but also whether that score can be trusted. We therefore adopt a confidence-aware scoring paradigm in which the model outputs both a predicted score and a confidence value that determines whether a response is automatically scored or deferred to human review. This confidence is derived from the model’s test-time predictive distribution and is therefore directly aligned with the final scoring decision. Parameter-Efficient Task Adaptation via LoRA. To implement this confidence aware scoring framework in a practical classroom assessment setting, we adapt a pretrained transformer-based vision backbone using a parameter-efficient fine-tuning strategy. Specifically, we employ Low-Rank Adaptation (LoRA) [9], which enables efficient task-specific adaptation while updating only a small subset of parameters [7]. Concretely, rather than updating all parameters in the transformer, LoRA introduces low-rank updates into the linear projection layers. For a weight matrix W ∈ Rd×p , the adapted layer is parameterized as W ′ = W + ∆W,

∆W = BA,

where A ∈ Rr×p and B ∈ Rd×r are trainable low-rank matrices with r ≪ min{d, p}. During training, only the LoRA parameters {A, B} are optimized, while the pretrained weights W remain fixed. This yields an adapted scoring function fθ+∆θ (x) that captures task-specific scoring patterns with only a small number of additional trainable parameters. Confidence via Test-Time Predictive Distribution. Once the scoring model is adapted to the task, we estimate prediction confidence by examining the stability of scoring decisions under plausible test-time variations of the input, following the direction of [1, 4]. Given a response x, we generate M semantic-preserving perturbations, such as crops or rotations, x̃j = Tj (x), j = 1, . . . , M. For each perturbed input, the model produces a predictive distribution p(j) = fθ (x̃j ). We then define the testtime predictive distribution as the average over these perturbations: p̄(x) = PM (j) 1 j=1 p . The automated score is then given by ŷ(x) = arg maxk p̄k (x). M We define the response-level confidence score as the probability mass assigned to the predicted score: M

κ(x) = max p̄k (x) = p̄ŷ(x) (x) = k

1 X (j) p . M j=1 ŷ(x)

Here, κ(x) ∈ [0, 1] measures how strongly the final predictive distribution supports the chosen score. Intuitively, a high confidence value indicates that plausible test-time variations of the response largely agree on the same score, whereas a low value suggests disagreement among these variations. Selective Automated Scoring. Using the response-level confidence score defined above, we implement a selective automated scoring strategy that defers

4

L. Fang et al.

low-confidence cases to human graders. Given a confidence threshold τ , define gτ (x) = 1{κ(x) ≥ τ }. The selective scoring rule is: ( ŷ(x), gτ (x) = 1, hτ (x) = defer to human review, gτ (x) = 0. This formulation allows the system to automatically score responses with sufficient confidence while deferring uncertain cases for manual evaluation. By varying τ , we control the trade-off between automated coverage and scoring risk. Test-Time Selection with Selective Trust. While the test-time predictive distribution already provides a response-level confidence score, we further improve robustness by selectively trusting individual test-time predictions. Importantly, this step operates at the view level and uses an internal selection score, which is distinct from the response-level confidence κ(x) defined above. (j) For each augmented prediction p(j) , let ŷ (j) = arg maxk pk denote the predicted class under that perturbation. We then compute a selection score: c(j) = −

X 1 (j)  log pk , K −1 (j)

(1)

k̸=ŷ

which measures how strongly that perturbed prediction suppresses probability mass on competing classes. Larger values of c(j) indicate more decisive predictions for that test-time view and are used solely for ranking and selecting reliable perturbations. We adopt a Top-η filtering strategy at test time. Given M perturbed views of an input x, we retain only the top ⌈ηM ⌉ perturbations with the largest selection scores c(j) , where η ∈ (0, 1]. Let J (x) ⊆ {1, . . . , M } denote the indices of these selected views. The filtered predictive distribution is then defined as p̄η (x) =

X 1 p(j) . |J (x)| j∈J (x)

The refined prediction and response-level confidence are given by ŷη (x) = arg max p̄η,k (x), k

3

κη (x) = max p̄η,k (x). k

Dataset Details

We use a dataset of student-generated scientific drawings collected from middle school science modeling assessments in the northeastern United States [8]. The assessment items are aligned with the Next Generation Science Standards (NGSS) and require students to construct visual models to explain observed scientific phenomena. Our experiments focus on the visual components of student responses from six assessment items, each targeting a distinct scientific concept. All responses are provided as images and independently scored by domain

Confidence-Aware Scoring of Student Drawings

5

Table 1. Summary of the student drawing dataset used in this study. Item

Item Description

Total

Item 1 Item 2 Item 3 Item 4 Item 5 Item 6

Red dye diffusion Jane’s inflated ball Melting butter Hot shower effect Heated cup of water Jennifer’s teapot

477 538 520 772 453 816

Beginning Developing Proficient 195 177 155 494 61 390

205 288 266 107 262 271

77 73 99 171 130 155

Fig. 1. Example science modeling assessment item. Students observe red dye diffusion in cold, room-temperature, and hot water and are asked to construct a visual model representing the behavior of water and dye particles.

experts using rubric-based criteria. Following the original annotation protocol, each drawing is assigned to one of three ordered proficiency levels: Beginning, Developing, or Proficient. Figure 1 shows an example item illustrating the open-ended and visually complex nature of the student drawings. Example student drawings are available in the GitHub repository 3 . Dataset statistics for each item, including the number of responses and label distributions, are summarized in Table 1.

4

Experimentation and Results

We evaluate the proposed confidence-aware automated scoring framework on the student drawing assessment dataset described in Section 3. For each assessment item, the task is formulated as a supervised multi-class classification problem, where the scoring model predicts one of K = 3 rubric-aligned proficiency levels: Beginning, Developing, or Proficient. 3

https://github.com/LuyangFang/CA-Drawing

6

L. Fang et al.

Baselines. We compare four approaches: (1) ViT (Frozen), a pretrained vision transformer without task-specific fine-tuning; (2) ViT+LoRA, where the backbone is adapted using low-rank adaptation; (3) CA-Uniform, a confidenceaware scoring method that uniformly trusts all test-time predictions; and (4) CA-Selective, our proposed confidence-aware selective scoring method based on test-time selection with selective trust. Evaluation Metrics. We report performance using (1) standard classification metrics, including accuracy, Cohen’s κ, precision, recall, and F1 score, computed separately for each item and averaged across items; and (2) evaluation of the confidence score introduced by the proposed CA-Selective method. Training Details. Models are trained using a stratified train/validation/test split to preserve proficiency distributions. We adopt a pretrained ViT model (vit_base_patch16_224) backbone. Standard image preprocessing and data augmentation are applied. Models are optimized using cross-entropy loss for three-class classification, and the best checkpoint for each item is selected based on validation Cohen’s κ. We use M = 20 and η = 0.75. All models are trained independently for each assessment item. Table 2. Comparison of four methods across six items. Best performance for each item is shown in bold. Metric

Method

Item 1 Item 2 Item 3 Item 4 Item 5 Item 6

Avg

Accuracy

ViT (Frozen) ViT + LoRA CA-Uniform CA-Selective

0.438 0.792 0.792 0.792

0.482 0.833 0.852 0.852

0.212 0.769 0.808 0.827

0.244 0.821 0.821 0.821

0.174 0.761 0.783 0.783

0.183 0.622 0.659 0.659

0.289 0.766 0.786 0.789

Kappa

ViT (Frozen) ViT + LoRA CA-Uniform CA-Selective

-0.048 0.796 0.796 0.796

0.134 0.759 0.789 0.789

-0.110 0.708 0.747 0.826

0.040 0.788 0.813 0.813

-0.112 0.589 0.610 0.694

0.000 0.608 0.643 0.643

-0.016 0.708 0.733 0.760

Precision

ViT (Frozen) ViT + LoRA CA-Uniform CA-Selective

0.314 0.774 0.774 0.774

0.304 0.905 0.914 0.914

0.246 0.728 0.774 0.805

0.411 0.721 0.708 0.708

0.258 0.813 0.829 0.836

0.061 0.585 0.638 0.638

0.266 0.754 0.773 0.779

Recall

ViT (Frozen) ViT + LoRA CA-Uniform CA-Selective

0.350 0.758 0.758 0.758

0.327 0.695 0.713 0.713

0.259 0.736 0.782 0.815

0.347 0.702 0.679 0.679

0.255 0.695 0.707 0.707

0.333 0.596 0.639 0.639

0.312 0.697 0.713 0.719

F1 Score

ViT (Frozen) ViT + LoRA CA-Uniform CA-Selective

0.257 0.765 0.765 0.765

0.299 0.729 0.745 0.745

0.196 0.731 0.778 0.809

0.152 0.708 0.687 0.687

0.173 0.724 0.739 0.743

0.103 0.571 0.612 0.612

0.196 0.705 0.721 0.727

4.1

Automated Scoring Performance

Table 2 reports automated scoring performance across six NGSS-aligned modeling items. Overall, the confidence-aware methods improve average performance

Confidence-Aware Scoring of Student Drawings

7

relative to standard fine-tuning, with the clearest gains observed in Cohen’s kappa and, in most cases, F1 score. Higher kappa values indicate improved agreement with human rubric-based scoring beyond chance, suggesting that confidence-aware modeling can support more reliable scoring decisions across diverse student drawings. Comparing the two confidence-aware variants, CA-Selective achieves the best overall performance on average across items, suggesting that selective aggregation can improve scoring quality by reducing the influence of less informative testtime predictions. From an assessment perspective, this leads to rubric-aligned predictions that are less sensitive to superficial variability in students’ representational styles. Such robustness is especially important in open-ended drawing tasks, where similar ideas may be expressed visually in different ways. Table 3 summarizes model complexity across scoring methods. All approaches share the same ViT backbone (86.4M parameters), so performance differences are not attributable to model capacity. LoRA introduces only 0.6M additional trainable parameters while keeping the backbone fixed, and the confidence-aware variants add no further trainable parameters. Confidence-aware scoring incurs a higher inference cost because it aggregates multiple test-time augmented views to obtain response-level confidence, but all methods remain substantially lighter than LLM-based scoring approaches. Table 3. Model complexity and computational cost of different scoring methods. Method

Backbone Params

Trainable Params

Inference Latency (ms)

ViT (Frozen) ViT + LoRA CA-Uniform CA-Selective

86.4M 86.4M 86.4M 86.4M

0 0.6M 0.6M 0.6M

1.0341 1.0355 20.532 20.572

To provide comparison with modern open-source multimodal foundation models, we additionally evaluated a vision–language model (Qwen3-VL-8B-Instruct) in a zero-shot setting using the same test split and rubric-aligned prompts. In this configuration, the model achieved lower agreement with expert scoring and substantially higher inference latency than the task-adapted ViT-based approaches. Details are provided in the GitHub repository. This does not indicate a limitation of the multimodal model itself, as effective use of VLMs for rubric-aligned assessment typically benefits from careful prompt design, few-shot exemplars, or task-specific adaptation. Instead, the comparison provides a practical reference showing that lightweight task-adapted vision backbones remain competitive and efficient in this setting. 4.2

Confidence Scores

To validate the intuitive rationality of our confidence metric κ(x), we analyze the correlation between mean confidence and predictive accuracy across

8

L. Fang et al.

all proficiency labels. We find that there is a significant positive correlation (r = 0.649, p < 0.01) between the two. The linear fit demonstrates that higher confidence scores consistently align with higher scoring accuracy, particularly for the ‘Beginning’ level. This alignment ensures that κ(x) serves as a reliable proxy for scoring quality, providing a solid foundation for the subsequent selective automated scoring strategy. Additional visualization results are available in the GitHub repository. We are also conducting expert review to verify the qualitative validity of these results. In assessment contexts, the key question is not only whether a model can generate a score, but whether that score should be acted upon without further review. In this regard, the confidence score may provide a practical basis for deciding when an automated score may be used and when teacher review is still needed. This is especially relevant for student drawings, where visually ambiguous or unconventional drawings may be difficult for automated systems to interpret reliably and therefore may require teacher review.

5

Conclusion

In this work, we studied confidence-aware automated scoring of student-generated scientific drawings using a vision-based approach. By deriving response-level confidence from test-time predictive distributions and selectively aggregating reliable predictions, the proposed framework enables automated scoring that balances efficiency and reliability. Experiments on six NGSS-aligned science modeling tasks demonstrate that confidence-aware methods improve agreement with human scoring while providing an intuitive signal for deciding when automated scores can be trusted. Beyond performance gains, this work highlights the importance of integrating confidence estimation into automated assessment systems to support responsible deployment in classroom settings. At the same time, findings in this study should be interpreted in light of the dataset context. The data were collected from middle school science classrooms in one region of the United States, and students’ representational practices may reflect local curricular and classroom contexts. In addition, because expert-provided scores were used as the reference, any systematic tendencies in human scoring may also be reflected in model performance. With these caveats, future work will examine the proposed approach across more diverse student populations and assessment contexts, as well as explore extensions to multimodal student responses and more fine-grained feedback aligned with instructional use. Acknowledgments. This work was partially supported by the U.S. National Science Foundation (NSF) [2101104, DMS-2124493, DMS-2311297, DMS-2319279, DMS2318809]. Any opinions, findings, conclusions, or recommendations expressed in this material are those of the authors and do not necessarily reflect the views of NSF. Disclosure of Interests. The authors have no competing interests to declare.

Confidence-Aware Scoring of Student Drawings

9

References 1. Bahat, Y., Shakhnarovich, G.: Classification confidence estimation with test-time data-augmentation. arXiv preprint arXiv:2006.16705 (2020) 2. Black, P., Wiliam, D.: Assessment and classroom learning assessment in education. principles, policy & practice, 5 (1), 7–74 (1998) 3. Fang, L., Wang, T., Ma, P., Zhai, X.: Generalizable and efficient automated scoring with a knowledge-distilled multi-task mixture-of-experts. In: Proceedings of the AAAI Conference on Artificial Intelligence. vol. 40, pp. 40831–40839 (2026) 4. Fu, Y., Wang, X., Tian, Y., Zhao, J.: Deep think with confidence. arXiv preprint arXiv:2508.15260 (2025) 5. Gürtl, S., Schimetta, G., Kerschbaumer, D., Liut, M., Steinmaurer, A.: Automated feedback on student-generated uml and er diagrams using large language models. arXiv preprint arXiv:2507.23470 (2025) 6. Han, K., Wang, Y., Chen, H., Chen, X., Guo, J., Liu, Z., Tang, Y., Xiao, A., Xu, C., Xu, Y., et al.: A survey on vision transformer. IEEE transactions on pattern analysis and machine intelligence 45(1), 87–110 (2022) 7. Han, Z., Gao, C., Liu, J., Zhang, J., Zhang, S.: Parameter-efficient fine-tuning for large models: A comprehensive survey. arXiv preprint arXiv:2403.14608 (2024) 8. Harris, C.J., Krajcik, J.S., Pellegrino, J.W.: Creating and using instructionally supportive assessments in NGSS classrooms. NSTA Press, National Science Teaching Association (2024) 9. Hu, E.J., Shen, Y., Wallis, P., Allen-Zhu, Z., Li, Y., Wang, S., Wang, L., Chen, W.: Lora: Low-rank adaptation of large language models. In: International Conference on Learning Representations (ICLR) (2022) 10. Latif, E., Fang, L., Ma, P., Zhai, X.: Knowledge distillation of llms for automatic scoring of science assessments. In: International conference on artificial intelligence in education. pp. 166–174. Springer (2024) 11. Lee, G., Zhai, X.: Nerif: Gpt-4v for automatic scoring of drawn models. Journal of Science Education and Technology pp. 1–18 (2025) 12. Lee, J., Lee, G.G., Hong, H.G.: Automated assessment of student hand drawings in free-response items on the particulate nature of matter. Journal of Science Education and Technology 32(4), 549–566 (2023) 13. Leong, C.W., Liu, L., Ubale, R., Chen, L.: Toward large-scale automated scoring of scientific visual models. In: Proceedings of the Fifth Annual ACM Conference on Learning at Scale. pp. 1–4 (2018) 14. Li, T., Haudek, K., Krajcik, J.: Utilizing deep learning ai to analyze scientific models: Overcoming challenges. Journal of Science Education and Technology pp. 1–22 (2025) 15. Pei, B., Xing, W., Lee, H.S.: Using automatic image processing to analyze visual artifacts created by students in scientific argumentation. British Journal of Educational Technology 50(6), 3391–3404 (2019) 16. Rahaman, M.A., Rahman, T., Hossain, M.M.: Automated grading and classification of hand-drawn sketches using deep learning. In: 2024 International Conference on Innovations in Science, Engineering and Technology (ICISET). pp. 1–6. IEEE (2024) 17. Wang, G., Li, W., Aertsen, M., Deprest, J., Ourselin, S., Vercauteren, T.: Aleatoric uncertainty estimation with test-time augmentation for medical image segmentation with convolutional neural networks. Neurocomputing 338, 34–45 (2019)

Record · ID 290624 · SHA-256 a0aafd5b2c545fce
Retrieved via Conceptio — every document is proof-bundled with source, license, and retrieval metadata.