REVIEW 4 major objections 5 minor 42 references
Improving Medical Diagnostics with Vision-Language Models: Convex Hull-Based Uncertainty Analysis
T0 review · 4 major / 5 minor · reviewed 2026-08-12 · deepseek-v4-flash
Pith's one-line read This paper proposes that the total convex hull area of a vision-language model's response embeddings is a measure of its uncertainty, and reports that this measure increases with sampling temperature in medical chest X-ray question…
desk verdict A transparent but unvalidated hull-area diversity metric applied to a medical VLM: the temperature trend is real but trivial, and the 'uncertainty' claim is unsupported, with the appendix showing contradictory responses in the supposedly least-uncertain case. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The central object is the total convex hull area $A(p,t)$, defined as the sum of the areas of the convex hulls of all DBSCAN clusters (excluding noise points) found among the two-dimensional PCA projections of BERT embeddings of the model's 30 responses to prompt $p$ at temperature $t$. The machinery works in three stages: BERT converts each generated radiology report into a high-dimensional semantic vector; PCA projects these vectors to two dimensions for visualization and clustering; DBSCAN groups nearby points; and the convex hull area of each cluster is summed to a single scalar uncertainty score. The claim is that the scalar tracks the diversity, and therefore the uncertainty, of the model's outputs.
What would settle it
Generate a labeled set of chest X-ray questions with known correct answers, run the same 30-response pipeline at a fixed temperature, and compute both the total convex hull area and the proportion of correct answers. If images whose responses are tightly clustered (small hull area) are not more likely to be answered correctly than those with large hull area, then the claimed uncertainty interpretation is falsified.
Extended reading notes
Core claim
The paper's central claim is that the total convex hull area over DBSCAN clusters of BERT-encoded, PCA-projected response embeddings is a measure of the uncertainty of a VLM's responses to a given prompt. Formally, $A(p,t) = \sum_{c \in L, c \neq -1} \text{Area}(\text{ConvexHull}(c))$, where larger area means higher uncertainty. The authors argue this follows because diversity of responses increases with uncertainty, and the convex hull area reflects the spatial spread of embeddings. They demonstrate the measure on LLM-CXR generating 30 radiology reports per chest X-ray at temperatures 0.001, 0.25, 0.50, 0.75, and 1.00, observing that mean uncertainty rises monotonically with temperature, from 0.0001 to 0.3117. They also note that the model produces confident-sounding reports even for noisy or irrelevant images, which they attribute to poor data quality affecting reliability.
Load-bearing premise
The load-bearing premise is that the geometric spread of response embeddings, after BERT encoding, PCA projection, and DBSCAN clustering, faithfully tracks how uncertain the model really is in a clinical setting; the paper never validates this against accuracy, calibration, or expert judgment.
Editorial extensions
If this is right
- If $A(p,t)$ is a valid uncertainty measure, low-temperature generation (near 0.001) should be preferred when deploying a medical VLM, because responses are nearly deterministic and the metric reports near-zero uncertainty.
- The metric provides a way to compare the reliability of different VLMs or different prompts on the same clinical task without needing ground-truth labels.
- Because the measure only requires repeatedly sampling the model and embedding its outputs, it can be applied to any black-box VLM that generates text.
- The observation that noisy or irrelevant X-ray images still yield confident-looking reports implies that input data quality directly affects the usefulness of any uncertainty score on this pipeline.
Reading between the lines
- A natural next test the paper does not run: calibrate $A(p,t)$ against answer accuracy on a labeled benchmark. If a small hull area sometimes accompanies wrong but confident answers, the metric would capture diversity but not clinical reliability.
- The same geometry could serve as an abstention rule: a system could refuse to answer when the total hull area exceeds a threshold, and the threshold could be tuned per deployment.
- The temperature-diversity relationship likely holds for any stochastic text generator, but the mapping from hull area to diagnostic risk may be dataset- and task-specific, so the measured values should not be compared across different prompt sets without normalization.
- The paper's reliance on PCA projection means the hull area depends on the projection; testing robustness with other dimensionality reductions (e.g., UMAP) or with the BERT embedding dimension itself would clarify whether the uncertainty signal is an artifact of 2D projection.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes a convex-hull-based uncertainty metric for vision-language model (VLM) responses in a medical visual question answering setting. For a fixed prompt and chest X-ray image, the authors generate 30 radiology-report responses from the LLM-CXR model at temperatures 0.001, 0.25, 0.50, 0.75, and 1.00. Responses are encoded with BERT, projected to two dimensions with PCA, clustered with DBSCAN, and the sum of the convex hull areas of all non-noise clusters is defined as the uncertainty A(p,t). The paper reports histograms and descriptive statistics suggesting that A(p,t) increases with temperature and concludes that higher temperature settings lead to higher uncertainty, with implications for healthcare trustworthiness.
Significance. If the proposed metric were shown to track predictive uncertainty in a clinically meaningful sense, it could offer a simple, model-agnostic tool for evaluating VLM reliability. The paper makes its code available and applies the method to a concrete medical VQA task, which is a strength. However, the significance is currently limited because the metric is not validated against correctness, calibration, or expert judgment, and the paper's own appendix contains examples that contradict the interpretation of low hull area as low uncertainty.
major comments (4)
- [Section IV.B.1, Lemma] The proof of the lemma is invalid. The claim that larger pairwise distances between embedding points imply a larger convex hull area is false in general: a set of collinear points has zero hull area regardless of how far apart the points are, and adding a single outlier can increase hull area in a way that is not monotonic in pairwise distances. Furthermore, the proof does not account for the PCA projection to two dimensions, which does not preserve distances and can change the ordering of hull areas. Thus the 'mathematical justification' does not establish that A(p,t) measures uncertainty.
- [Section IV.A, definition of A(p,t)] The central claim that A(p,t) is 'a measure of the uncertainty of the model's responses' is asserted rather than demonstrated. The metric is never compared against diagnostic accuracy, calibration, or expert judgment. This is not merely a philosophical issue: Appendix I, labeled 'Least Uncertain Instance at the Temperature Setting of 1.00', lists clinically contradictory responses for the same image — 'Lungs are fully expanded and clear', '1. Small right apical pneumothorax', 'Findings concerning for volume overload' — which a clinically useful uncertainty metric should identify as highly uncertain, not as the least uncertain instance. Without evidence that hull area separates reliable from unreliable answers, the abstract's claim about healthcare trustworthiness is unsupported.
- [Table I and Figures 2-10] The numerical results in Table I are inconsistent with the histograms. For T=0.50, Figure 6 shows a normal distribution centered around a convex hull area of 25; for T=0.75, Figure 8 shows a main peak around 30; for T=1.00, Figure 10 shows a distribution spanning roughly 10-60. Yet Table I reports means of 0.1698, 0.2473, and 0.3117 for those temperatures. The paper does not explain whether the histograms are normalized, per-cluster, or in different units. Additionally, no error bars, confidence intervals, or statistical tests are reported across the images, so the claimed monotonic increase in uncertainty with temperature is not supported by the presented evidence.
- [Section IV.A, experimental setup] The experimental setup omits several details that are needed to evaluate the method: the number of chest X-ray images used is not stated, the number of DBSCAN clusters and the proportion of noise points excluded from A(p,t) are not reported, and only two illustrative 'most uncertain' instances per temperature are shown. Because the total area is a sum over clusters, the number of clusters and the noise exclusion rule can dominate the result; without aggregate statistics over all images, the central empirical claim cannot be assessed.
minor comments (5)
- [Throughout] The manuscript contains several typos and misspellings, including 'Evalaution' in the Section IV.A heading, 'resonances' in Section V, 'antipicated' in Section IV.C.5, and 'diffrence' in the discussion of Table I. A careful proofreading pass is needed.
- [Table I] The column labeled '0.001-1.00' contains ratios (e.g., 3115, 114, 31) but the header does not state what is being divided by what; the intended computation should be explicitly defined.
- [Figures 3, 5, 7, 9, 11] The contour plots are difficult to interpret because the axes are unlabeled and no colorbar is provided, so the reader cannot determine what the background colors represent in terms of uncertainty values.
- [Section IV.A] The GitHub URL 'https://github.com/ocatak/VLM Uncertainty' contains a space and is likely broken; please provide a valid link.
- [References] The paper would benefit from citing prior work on semantic entropy or embedding-diversity-based uncertainty estimation in language models, to clarify the novelty of the proposed convex-hull metric relative to existing approaches.
Circularity Check
Central result is essentially a definitional restatement: uncertainty is defined as convex hull area of embedding spread, and temperature is known to increase output diversity, so the reported temperature-uncertainty trend is built into the operationalization.
-
self definitional
[Section IV.A (definition of A(p,t)) and Section IV.B.2 (Temperature Sensitivity)]
"The total area is a measure of the uncertainty of the model’s responses to the given prompt. ... In this context, a larger area indicates a higher uncertainty, while a smaller area indicates a lower uncertainty. ... As t increases, the model produces more diverse and uncertain responses. Formally, for a higher temperature t, the spread of the embedding points increases, leading to larger convex hulls: ∂A(p,t)/∂t > 0"
Uncertainty is never measured independently; it is defined as A(p,t), the summed DBSCAN-cluster convex hull areas of BERT/PCA response embeddings. Temperature is introduced as the sampling knob that controls output diversity, and the paper's own 'mathematical justification' proves only the analytic fact that increasing pairwise embedding distance increases hull area. The reported conclusion that uncertainty increases with temperature therefore follows from substituting the definition of uncertainty (embedding spread) into the known effect of temperature (more diverse outputs).
-
other
[Appendix I (Least Uncertain Instance at Temperature Setting 1.00)]
"I. Least Uncertain Instance at the Temperature Setting of 1.00 ... -- Lungs are fully expanded and clear. ... -- 1. Small right apical pneumothorax. ... -- Findings concerning for volume overload."
The instance is labeled 'least uncertain' because its summed convex hull area is smallest. But the quoted responses are clinically contradictory: a clear lung, a right apical pneumothorax, and volume overload cannot all describe the same radiograph. This shows that the 'uncertainty' label is assigned by the geometry of the embedding clusters, not by any property related to diagnostic reliability. The paper has simply renamed geometric dispersion as uncertainty, so the quantity it claims to evaluate remains the same quantity it defined; no external validation step breaks the definitional loop.
full rationale
The paper's derivation chain is: define uncertainty as the summed convex hull area of clustered response embeddings; note (correctly) that temperature is a knob that increases output diversity; and conclude that uncertainty increases with temperature. The second and third links are connected by the definitional equation A(p,t) = geometric spread, so the central claim is largely tautological. The 'mathematical justification' in Section IV.B.1 proves only a geometric monotonicity fact (larger pairwise distances imply larger hull area), and Section IV.B.2 asserts ∂A(p,t)/∂t > 0 from the temperature-diversity relationship rather than from any independent uncertainty measurement. Appendix I exposes the consequence: an instance called 'least uncertain' contains mutually contradictory clinical findings, confirming that the label tracks embedding spread rather than diagnostic reliability. There is also a self-citation to the authors' prior convex-hull uncertainty work [40], but the core issue is not the citation chain; it is that the paper's operational definition of uncertainty already contains the reported result. Consequently, the abstract's healthcare-trustworthiness conclusion is not independently supported, though the underlying observation that higher temperature increases response diversity remains true.
Assumptions & free parameters
free parameters (6)
- DBSCAN epsilon =
0.25
- DBSCAN min_samples =
3
- PCA dimensionality =
2
- Number of responses per image =
30
- Temperature values =
0.001, 0.25, 0.50, 0.75, 1.00
- BERT embedding model
assumptions (5)
- ad hoc to paper Area of a convex hull increases monotonically with the pairwise distances of its points.
- domain assumption Higher temperature sampling increases the semantic diversity of generated radiology reports.
- domain assumption BERT embeddings and PCA projection preserve enough structure for hull area to represent semantic spread.
- domain assumption DBSCAN with fixed epsilon and min_samples yields meaningful clusters of responses.
- ad hoc to paper The variability of responses to the same prompt and image is equivalent to predictive uncertainty.
invented entities (1)
-
Convex hull area uncertainty score
Cite this review
Pith. "Pith review of Improving Medical Diagnostics with Vision-Language Models: Convex Hull-Based Uncertainty Analysis." pith.science (2026). https://pith.science/paper/42LMUBKF
@misc{pith2026241200056,
author = {Pith},
title = {Pith review of: Improving Medical Diagnostics with Vision-Language Models: Convex Hull-Based Uncertainty Analysis},
year = {2026},
howpublished = {\url{https://pith.science/paper/42LMUBKF}},
note = {Machine review of arXiv:2412.00056}
}
read the original abstract
In recent years, vision-language models (VLMs) have been applied to various fields, including healthcare, education, finance, and manufacturing, with remarkable performance. However, concerns remain regarding VLMs' consistency and uncertainty, particularly in critical applications such as healthcare, which demand a high level of trust and reliability. This paper proposes a novel approach to evaluate uncertainty in VLMs' responses using a convex hull approach on a healthcare application for Visual Question Answering (VQA). LLM-CXR model is selected as the medical VLM utilized to generate responses for a given prompt at different temperature settings, i.e., 0.001, 0.25, 0.50, 0.75, and 1.00. According to the results, the LLM-CXR VLM shows a high uncertainty at higher temperature settings. Experimental outcomes emphasize the importance of uncertainty in VLMs' responses, especially in healthcare applications.
Figures
Figures from the paper (4 more)
Reference graph
Works this paper leans on
-
[1]
J. Achiam, S. Adler, S. Agarwal, L. Ahmad, I. Akkaya, F. L. Aleman, D. Almeida, J. Altenschmidt, S. Altman, S. Anadkat et al. , “Gpt-4 technical report,” arXiv preprint arXiv:2303.08774 , 2023
arXiv 2023
-
[2]
Improved baselines with visual instruction tuning,
H. Liu, C. Li, Y . Li, and Y . J. Lee, “Improved baselines with visual instruction tuning,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , 2024, pp. 26 296–26 306
2024
-
[3]
Cogvlm: Visual expert for pretrained language models,
W. Wang, Q. Lv, W. Yu, W. Hong, J. Qi, Y . Wang, J. Ji, Z. Yang, L. Zhao, X. Song et al., “Cogvlm: Visual expert for pretrained language models,” arXiv preprint arXiv:2311.03079 , 2023
arXiv 2023
-
[4]
Learning transferable visual models from natural language supervision,
A. Radford, J. W. Kim, C. Hallacy, A. Ramesh, G. Goh, S. Agarwal, G. Sastry, A. Askell, P. Mishkin, J. Clark et al., “Learning transferable visual models from natural language supervision,” in International conference on machine learning . PMLR, 2021, pp. 8748–8763
2021
-
[5]
K. Cirone, M. Akrout, L. Abid, and A. Oakley, “Assessing the utility of multimodal large language models (gpt-4 vision and large language and vision assistant) in identifying melanoma across different skin tones,” JMIR Dermatology, vol. 7, 2024
work page 2024
-
[6]
G. A. Guerra, H. Hofmann, S. Sobhani, G. Hofmann, D. Gomez, D. Soroudi, B. S. Hopkins, J. Dallas, D. J. Pangal, S. Cheoket al., “Gpt-4 artificial intelligence model outperforms chatgpt, medical students, and neurosurgery residents on neurosurgery written board-like questions,” World Neurosurgery, vol. 179, pp. e160–e165, 2023
work page 2023
-
[7]
Evaluating gpt-v4 (gpt-4 with vision) on detection of radiologic findings on chest radiographs,
Y . Zhou, H. Ong, P. Kennedy, C. C. Wu, J. Kazam, K. Hentel, A. Flanders, G. Shih, and Y . Peng, “Evaluating gpt-v4 (gpt-4 with vision) on detection of radiologic findings on chest radiographs,”Radiology, vol. 311, no. 2, p. e233270, 2024
work page 2024
-
[8]
Llama: Open and efficient foundation language models,
H. Touvron, T. Lavril, G. Izacard, X. Martinet, M.-A. Lachaux, T. Lacroix, B. Rozi `ere, N. Goyal, E. Hambro, F. Azhar et al. , “Llama: Open and efficient foundation language models,” arXiv preprint arXiv:2302.13971, 2023
arXiv 2023
Show all 42 references
-
[9]
Llama 2: Open foundation and fine-tuned chat models,
H. Touvron, L. Martin, K. Stone, P. Albert, A. Almahairi, Y . Babaei, N. Bashlykov, S. Batra, P. Bhargava, S. Bhosale et al. , “Llama 2: Open foundation and fine-tuned chat models,” arXiv preprint arXiv:2307.09288, 2023
2023 arXiv
-
[10]
A survey of current datasets for vision and language research,
F. Ferraro, N. Mostafazadeh, L. Vanderwende, J. Devlin, M. Galley, M. Mitchell et al., “A survey of current datasets for vision and language research,” arXiv preprint arXiv:1506.06833 , 2015
2015 arXiv
-
[11]
Assessment of brain cancer atlas maps with multimodal imaging features,
E. Capobianco and M. Dominietto, “Assessment of brain cancer atlas maps with multimodal imaging features,” Journal of Translational Medicine, vol. 21, no. 1, p. 385, 2023
2023
-
[12]
Drg-llama: tuning llama model to predict diagnosis-related group for hospitalized patients,
H. Wang, C. Gao, C. Dantona, B. Hull, and J. Sun, “Drg-llama: tuning llama model to predict diagnosis-related group for hospitalized patients,” npj Digital Medicine , vol. 7, no. 1, p. 16, 2024
2024
-
[13]
System- atic analysis of chatgpt, google search and llama 2 for clinical decision support tasks,
S. Sandmann, S. Riepenhausen, L. Plagwitz, and J. Varghese, “System- atic analysis of chatgpt, google search and llama 2 for clinical decision support tasks,” Nature Communications, vol. 15, no. 1, p. 2050, 2024
2024
-
[14]
Lovm: Language- only vision model selection,
O. Zohar, S.-C. Huang, K.-C. Wang, and S. Yeung, “Lovm: Language- only vision model selection,” Advances in Neural Information Process- ing Systems, vol. 36, 2024
2024
-
[15]
Uncertainty- aware evaluation for vision-language models,
V . Kostumov, B. Nutfullin, O. Pilipenko, and E. Ilyushin, “Uncertainty- aware evaluation for vision-language models,” arXiv preprint arXiv:2402.14418, 2024
2024 arXiv
-
[16]
Confidence is key: Uncertainty estimation in large language models and vision language models,
T. Groot, “Confidence is key: Uncertainty estimation in large language models and vision language models,” Ph.D. dissertation, 2024
2024
-
[17]
A frame- work for predicting pandemic severity and mortality using generative ai and llms,
S. M. Tharayil, A. Alnajashi, A. Al-Ahamri, and M. Shahada, “A frame- work for predicting pandemic severity and mortality using generative ai and llms,” in SPE International Conference and Exhibition on Health, Safety, Environment, and Sustainability? SPE, 2024, p. D031S033R002
2024
-
[18]
Trustworthy ai: From theory to practice,
F. O. Catak and M. Kuzlu, “Trustworthy ai: From theory to practice,” https://digitalcommons.odu.edu/engtech books/5, 2024
2024
-
[19]
Uncertainty quantification in machine learning for engineering design and health prognostics: A tutorial,
V . Nemani, L. Biggio, X. Huan, Z. Hu, O. Fink, A. Tran, Y . Wang, X. Zhang, and C. Hu, “Uncertainty quantification in machine learning for engineering design and health prognostics: A tutorial,” Mechanical Systems and Signal Processing , vol. 205, p. 110796, 2023
2023
-
[20]
Uncertain context: Uncertainty quantification in machine learning,
B. Jalaian, M. Lee, and S. Russell, “Uncertain context: Uncertainty quantification in machine learning,” AI Magazine , vol. 40, no. 4, pp. 40–49, 2019
2019
-
[21]
Consistency and uncertainty: Identifying unreliable responses from black-box vision-language models for selective visual question answering,
Z. Khan and Y . Fu, “Consistency and uncertainty: Identifying unreliable responses from black-box vision-language models for selective visual question answering,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , 2024, pp. 10 854–10 863
2024
-
[22]
Taking a hint: Leveraging explanations to make vision and language models more grounded,
R. R. Selvaraju, S. Lee, Y . Shen, H. Jin, S. Ghosh, L. Heck, D. Batra, and D. Parikh, “Taking a hint: Leveraging explanations to make vision and language models more grounded,” in Proceedings of the IEEE/CVF international conference on computer vision , 2019, pp. 2591–2600
2019
-
[23]
Evaluating and mitigating number hallucinations in large vision-language models: A consistency perspec- tive,
H. Zhang, J. Zhang, and X. Wan, “Evaluating and mitigating number hallucinations in large vision-language models: A consistency perspec- tive,” arXiv preprint arXiv:2403.01373 , 2024
2024 arXiv
-
[24]
Attribution-based confidence metric for deep neural networks,
S. Jha, S. Raj, S. Fernandes, S. K. Jha, S. Jha, B. Jalaian, G. Verma, and A. Swami, “Attribution-based confidence metric for deep neural networks,” Advances in Neural Information Processing Systems, vol. 32, 2019
2019
-
[25]
Self-consistency improves chain of thought reasoning in language models,
X. Wang, J. Wei, D. Schuurmans, Q. Le, E. Chi, S. Narang, A. Chowdh- ery, and D. Zhou, “Self-consistency improves chain of thought reasoning in language models,” arXiv preprint arXiv:2203.11171 , 2022
2022 arXiv
-
[26]
Trading off diversity and quality in natural language generation,
H. Zhang, D. Duckworth, D. Ippolito, and A. Neelakantan, “Trading off diversity and quality in natural language generation,” in Proceedings of the Workshop on Human Evaluation of NLP Systems (HumEval) , 2021, pp. 25–33
2021
-
[27]
Hot or cold? adaptive temperature sampling for code generation with large language models,
Y . Zhu, J. Li, G. Li, Y . Zhao, Z. Jin, and H. Mei, “Hot or cold? adaptive temperature sampling for code generation with large language models,” in Proceedings of the AAAI Conference on Artificial Intelligence, vol. 38, no. 1, 2024, pp. 437–445
2024
-
[28]
How good are convex hull algorithms?
D. Avis and D. Bremner, “How good are convex hull algorithms?” in Proceedings of the eleventh annual symposium on Computational geometry, 1995, pp. 20–28
1995
-
[29]
Probabilistic convex hull queries over uncertain data,
D. Yan, Z. Zhao, W. Ng, and S. Liu, “Probabilistic convex hull queries over uncertain data,” IEEE Transactions on Knowledge and Data Engineering, vol. 27, no. 3, pp. 852–865, 2014
2014
-
[30]
Convex hulls under uncertainty,
P. K. Agarwal, S. Har-Peled, S. Suri, H. Yıldız, and W. Zhang, “Convex hulls under uncertainty,” Algorithmica, vol. 79, pp. 340–367, 2017
2017
-
[31]
A new active convex hull model for image regions,
N. M. Sirakov, “A new active convex hull model for image regions,” Journal of Mathematical Imaging and Vision , vol. 26, pp. 309–325, 2006
2006
-
[32]
On the most likely convex hull of uncertain points,
S. Suri, K. Verbeek, and H. Yıldız, “On the most likely convex hull of uncertain points,” in Algorithms–ESA 2013: 21st Annual European Symposium, Sophia Antipolis, France, September 2-4, 2013. Proceedings
2013
-
[33]
Springer, 2013, pp. 791–802
2013
-
[34]
A direct method for determining the lower convex hull of a finite point set in 3d,
T. A. Phan and T. G. Dinh, “A direct method for determining the lower convex hull of a finite point set in 3d,” in Advanced Com- putational Methods for Knowledge Engineering: Proceedings of 3rd International Conference on Computer Science, Applied Mathematics and Applications-...
2015
-
[35]
Neural networks for convex hull computation,
Y . Leung, J.-S. Zhang, and Z.-B. Xu, “Neural networks for convex hull computation,” IEEE Transactions on Neural Networks, vol. 8, no. 3, pp. 601–611, 1997
1997
-
[36]
Llm-cxr: Instruction- finetuned llm for cxr image understanding and generation,
S. Lee, W. J. Kim, J. Chang, and J. C. Ye, “Llm-cxr: Instruction- finetuned llm for cxr image understanding and generation,” in The Twelfth International Conference on Learning Representations , 2023
2023
-
[37]
Taming transformers for high- resolution image synthesis,
P. Esser, R. Rombach, and B. Ommer, “Taming transformers for high- resolution image synthesis,” in Proceedings of the IEEE/CVF conference on computer vision and pattern recognition , 2021, pp. 12 873–12 883
2021
-
[38]
Free dolly: Introducing the world’s first truly open instruction-tuned llm,
M. Conover, M. Hayes, A. Mathur, J. Xie, J. Wan, S. Shah, A. Ghodsi, P. Wendell, M. Zaharia, and R. Xin, “Free dolly: Introducing the world’s first truly open instruction-tuned llm,” Company Blog of Databricks , 2023
2023
-
[39]
Mimic-cxr-jpg-chest radiographs with structured labels,
A. Johnson, M. Lungren, Y . Peng, Z. Lu, R. Mark, S. Berkowitz, and S. Horng, “Mimic-cxr-jpg-chest radiographs with structured labels,” PhysioNet, 2019
2019
-
[40]
Covid-19 image data collection,
J. P. Cohen, P. Morrison, and L. Dao, “Covid-19 image data collection,” arXiv 2003.11597 , 2020. [Online]. Available: https: //github.com/ieee8023/covid-chestxray-dataset
2003 arXiv
-
[41]
Uncertainty quantification in large language models through convex hull analysis,
F. Ozgur Catak and M. Kuzlu, “Uncertainty quantification in large language models through convex hull analysis,” arXiv e-prints , pp. arXiv–2406, 2024. APPENDIX A. Least Uncertain Instance at the Temperature Setting of 0.001 X-Ray ImageResponses -- No acute intrathoracic proce...
2024
-
[42]
Right internal jugular central venous line at the cavoatrial junction
Small pleural effusion on the left ,→ ,→ ,→ ,→ ,→ ,→ ,→ ,→ ,→ -- Nasogastric tube tip in the stomach. Right internal jugular central venous line at the cavoatrial junction. ,→ ,→ -- Pulmonary edema with moderate right-sided effusion.,→ -- ET tube 5.3 cm above the carina
Reviewed August 12, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.