{"id":43,"date":"2025-05-06T05:47:48","date_gmt":"2025-05-06T05:47:48","guid":{"rendered":"https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/?page_id=43"},"modified":"2025-12-12T11:53:49","modified_gmt":"2025-12-12T11:53:49","slug":"methods","status":"publish","type":"page","link":"https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/methods\/","title":{"rendered":"Methods"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\"><strong>Overview<\/strong><\/h2>\n\n\n\n<p>Our method focuses on reducing hallucination in Vision-Language Models (VLMs) when processing multi-image visual question answering (VQA) tasks. We propose two novel techniques<span style=\"margin: 0px;padding: 0px\">:&nbsp;<strong>Attribute Visual Prompting<\/strong>&nbsp;and&nbsp;<\/span><strong>Contrastive-learning-based Fine-tuning<\/strong>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong><span style=\"margin: 0px;padding: 0px\"><strong>Attribute Visual Prompting<\/strong><\/span><\/strong><\/h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"746\" src=\"https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/wp-content\/uploads\/sites\/119\/2025\/05\/image-3-1024x746.png\" alt=\"\" class=\"wp-image-80\" srcset=\"https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/wp-content\/uploads\/sites\/119\/2025\/05\/image-3-1024x746.png 1024w, https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/wp-content\/uploads\/sites\/119\/2025\/05\/image-3-300x218.png 300w, https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/wp-content\/uploads\/sites\/119\/2025\/05\/image-3-768x559.png 768w, https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/wp-content\/uploads\/sites\/119\/2025\/05\/image-3.png 1074w\" sizes=\"auto, (max-width: 706px) 89vw, (max-width: 767px) 82vw, 740px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Overview of Methods<\/strong><\/h3>\n\n\n\n<p>Our method adopts a <strong>divide-and-conquer fusion strategy<\/strong> to guide VLMs toward more reliable and discriminative reasoning. The pipeline consists of <strong>three key stages<\/strong>:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Attribute Discovery<\/strong>\n<ul class=\"wp-block-list\">\n<li>Identify <strong>important visual attributes<\/strong> that are:\n<ul class=\"wp-block-list\">\n<li><em>shared across images<\/em> (commonality), and<\/li>\n\n\n\n<li><em>highly discriminative<\/em> for distinguishing similar objects.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li>These attributes serve as semantic anchors for comparison.<\/li>\n\n\n\n<li><em>Example:<\/em> For shoes, attributes such as <strong>logo<\/strong>, <strong>sole<\/strong>, and <strong>laces<\/strong> are critical for differentiation.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Attribute-Level Prompting<\/strong>\n<ul class=\"wp-block-list\">\n<li>Construct <strong>attribute-specific prompts<\/strong> to explicitly highlight the <strong>relevant image regions<\/strong>.\n<ul class=\"wp-block-list\">\n<li>Each prompt directs the model\u2019s attention to a single attribute, reducing interference from irrelevant visual cues.<\/li>\n\n\n\n<li>This step decomposes a complex comparison into multiple focused sub-tasks.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Prompt Aggregation &amp; VQA Formatting<\/strong>\n<ul class=\"wp-block-list\">\n<li>Aggregate the attribute-level prompts into a <strong>unified representation<\/strong>.<\/li>\n\n\n\n<li>Convert the aggregated prompts into a <strong>standardized VQA-style input<\/strong>.<\/li>\n\n\n\n<li>The final formatted input is fed into the LLM for consistent and comparable reasoning across samples.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Detailed walkthrough<\/strong><\/h3>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"642\" src=\"https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/wp-content\/uploads\/sites\/119\/2025\/12\/visual_prompting_pipeline-1024x642.png\" alt=\"\" class=\"wp-image-102\" srcset=\"https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/wp-content\/uploads\/sites\/119\/2025\/12\/visual_prompting_pipeline-1024x642.png 1024w, https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/wp-content\/uploads\/sites\/119\/2025\/12\/visual_prompting_pipeline-300x188.png 300w, https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/wp-content\/uploads\/sites\/119\/2025\/12\/visual_prompting_pipeline-768x481.png 768w, https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/wp-content\/uploads\/sites\/119\/2025\/12\/visual_prompting_pipeline.png 1494w\" sizes=\"auto, (max-width: 706px) 89vw, (max-width: 767px) 82vw, 740px\" \/><\/figure>\n\n\n\n<p>Our prompt pipeline combines a <strong>visual prompting module<\/strong> and a <strong>textual prompting module<\/strong>, which can be used independently or together.<\/p>\n\n\n\n<p>Given a sequence of images of a known object, we first extract a compact <strong>attribute pool<\/strong> from a reference image, capturing the most important and discriminative visual cues.<br>For each attribute, we generate an <strong>attribute-aware visual prompt<\/strong> by using attention maps from a pre-trained LLaVA-1.5 model, guided by simple attribute-specific questions (e.g., <em>\u201cWhat is the logo of this shoe?\u201d<\/em>). These attention maps are aggregated to highlight key regions in each image.<\/p>\n\n\n\n<p>In parallel, we construct an <strong>attribute-aware text prompt<\/strong> that explicitly injects the discovered attributes into the question.<br>Finally, visual tokens, attribute tokens, and question tokens are fused together as input to the vision-language model, encouraging grounded reasoning and reducing hallucination.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Contrastive-learning-based Fine-tuning<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Motivation<\/strong><\/h3>\n\n\n\n<p>The LVLM is essentially comparing the similarity and difference of entities in images between each pair of images, classifying them as the same object or person if they have similar features, and as different otherwise. So this kind of essence naturally fits a contrastive learning paradigm, which also makes similar pairs closer and separate apart different pairs.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Dataset<\/strong><\/h3>\n\n\n\n<p>We found a large-scale dataset called MVImgNet of multi-view images, where each video, essentially an image sequence, contains the same object but with different camera angles. Therefore, each image pair picked from a sequence can be regarded as a positive pair, which means the objects are the same. The difference in camera position could be beneficial for the robustness of LVLM because it encourages the model to focus on invariant object features across turbulated scenes, and rich annotation of this dataset, like object masks, can help us better prepare training data.<\/p>\n\n\n\n<p>Statistics of MVImgNet:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>~42k positive\/negative image pairs (~80GB)<\/li>\n\n\n\n<li>238 object classes with rich object-mask annotations<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"305\" src=\"https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/wp-content\/uploads\/sites\/119\/2025\/12\/image-1024x305.png\" alt=\"\" class=\"wp-image-95\" srcset=\"https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/wp-content\/uploads\/sites\/119\/2025\/12\/image-1024x305.png 1024w, https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/wp-content\/uploads\/sites\/119\/2025\/12\/image-300x89.png 300w, https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/wp-content\/uploads\/sites\/119\/2025\/12\/image-768x229.png 768w, https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/wp-content\/uploads\/sites\/119\/2025\/12\/image.png 1080w\" sizes=\"auto, (max-width: 706px) 89vw, (max-width: 767px) 82vw, 740px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Training Data Preparation<\/strong><\/h3>\n\n\n\n<p>Attributed-based Editing Setup:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Global &amp; local attribute pools generated via GPT-4o<\/li>\n\n\n\n<li>Nano-\ud83c\udf4c performs image editing using randomly sampled global or local attributes<\/li>\n<\/ul>\n\n\n\n<p>Grounding Ground Truth Setup:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use Qwen3-VL-32B to localize edited regions<\/li>\n\n\n\n<li>Prompt: \u201cThe &lt;attribute&gt; was edited by this prompt: &lt;prompt&gt;. Compare the images before and after editing and output the bounding box of the edited area in JSON format.\u201d<\/li>\n\n\n\n<li>Model outputs precise bounding boxes enclosing edited objects<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"909\" height=\"335\" src=\"https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/wp-content\/uploads\/sites\/119\/2025\/12\/image-1.png\" alt=\"\" class=\"wp-image-96\" srcset=\"https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/wp-content\/uploads\/sites\/119\/2025\/12\/image-1.png 909w, https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/wp-content\/uploads\/sites\/119\/2025\/12\/image-1-300x111.png 300w, https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/wp-content\/uploads\/sites\/119\/2025\/12\/image-1-768x283.png 768w\" sizes=\"auto, (max-width: 706px) 89vw, (max-width: 767px) 82vw, 740px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Training Paradigm<\/strong><\/h3>\n\n\n\n<p>Given a positive image pair and a negative pair, where the positive pair is two images from the same image sequence but with different camera angles, we ask the question \u201cCompare image 1 and image 2, determine whether the main object in the two images represent the same instance\u201d, and we expect the LVLM to output three information: chain-of-thoughts reasoning process, the bounding box of edited area, and binary classification of positive v.s. negative. All this information is trained with supervision signals that we have constructed before.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"693\" src=\"https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/wp-content\/uploads\/sites\/119\/2025\/12\/Screenshot-2025-12-12-at-02.53.43-min-1024x693.png\" alt=\"\" class=\"wp-image-99\" srcset=\"https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/wp-content\/uploads\/sites\/119\/2025\/12\/Screenshot-2025-12-12-at-02.53.43-min-1024x693.png 1024w, https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/wp-content\/uploads\/sites\/119\/2025\/12\/Screenshot-2025-12-12-at-02.53.43-min-300x203.png 300w, https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/wp-content\/uploads\/sites\/119\/2025\/12\/Screenshot-2025-12-12-at-02.53.43-min-768x520.png 768w, https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/wp-content\/uploads\/sites\/119\/2025\/12\/Screenshot-2025-12-12-at-02.53.43-min-1536x1039.png 1536w, https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/wp-content\/uploads\/sites\/119\/2025\/12\/Screenshot-2025-12-12-at-02.53.43-min.png 1868w\" sizes=\"auto, (max-width: 706px) 89vw, (max-width: 767px) 82vw, 740px\" \/><\/figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>Citation<\/strong><br>Li, Z., Song, Y., Zhao, P., Cheng, M. M., Li, X., &amp; Yang, J. (2024). ATPrompt: Textual Prompt Learning with Embedded Attributes. arXiv preprint arXiv:2412.09442.<br><br>Yu, R., Yu, W., &amp; Wang, X. (2024, September). Attention prompting on image for large vision-language models. In European Conference on Computer Vision (pp. 251-268). Cham: Springer Nature Switzerland.<br><br>Yu, Xianggang, et al. \"Mvimgnet: A large-scale dataset of multi-view images.\" Proceedings of the IEEE\/CVF conference on computer vision and pattern recognition. 2023<br><br>Bai, Shuai et al. \u201cQwen3-VL Technical Report.\u201d arXiv preprint arXiv:2511.21631.<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Overview Our method focuses on reducing hallucination in Vision-Language Models (VLMs) when processing multi-image visual question answering (VQA) tasks. We propose two novel techniques:&nbsp;Attribute Visual Prompting&nbsp;and&nbsp;Contrastive-learning-based Fine-tuning. Attribute Visual Prompting Overview of Methods Our method adopts a divide-and-conquer fusion strategy to guide VLMs toward more reliable and discriminative reasoning. The pipeline consists of three key &hellip; <\/p>\n<p class=\"link-more\"><a href=\"https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/methods\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;Methods&#8221;<\/span><\/a><\/p>\n","protected":false},"author":231,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-43","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Methods - LVLM Multi-image VQA Dehallucination<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/methods\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Methods - LVLM Multi-image VQA Dehallucination\" \/>\n<meta property=\"og:description\" content=\"Overview Our method focuses on reducing hallucination in Vision-Language Models (VLMs) when processing multi-image visual question answering (VQA) tasks. We propose two novel techniques:&nbsp;Attribute Visual Prompting&nbsp;and&nbsp;Contrastive-learning-based Fine-tuning. Attribute Visual Prompting Overview of Methods Our method adopts a divide-and-conquer fusion strategy to guide VLMs toward more reliable and discriminative reasoning. The pipeline consists of three key &hellip; Continue reading &quot;Methods&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/methods\/\" \/>\n<meta property=\"og:site_name\" content=\"LVLM Multi-image VQA Dehallucination\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-12T11:53:49+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/wp-content\/uploads\/sites\/119\/2025\/05\/image-3.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1074\" \/>\n\t<meta property=\"og:image:height\" content=\"782\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/mscvprojects.ri.cmu.edu\\\/2025team15\\\/methods\\\/\",\"url\":\"https:\\\/\\\/mscvprojects.ri.cmu.edu\\\/2025team15\\\/methods\\\/\",\"name\":\"Methods - LVLM Multi-image VQA Dehallucination\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/mscvprojects.ri.cmu.edu\\\/2025team15\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/mscvprojects.ri.cmu.edu\\\/2025team15\\\/methods\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/mscvprojects.ri.cmu.edu\\\/2025team15\\\/methods\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/mscvprojects.ri.cmu.edu\\\/2025team15\\\/wp-content\\\/uploads\\\/sites\\\/119\\\/2025\\\/05\\\/image-3-1024x746.png\",\"datePublished\":\"2025-05-06T05:47:48+00:00\",\"dateModified\":\"2025-12-12T11:53:49+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/mscvprojects.ri.cmu.edu\\\/2025team15\\\/methods\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/mscvprojects.ri.cmu.edu\\\/2025team15\\\/methods\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/mscvprojects.ri.cmu.edu\\\/2025team15\\\/methods\\\/#primaryimage\",\"url\":\"https:\\\/\\\/mscvprojects.ri.cmu.edu\\\/2025team15\\\/wp-content\\\/uploads\\\/sites\\\/119\\\/2025\\\/05\\\/image-3.png\",\"contentUrl\":\"https:\\\/\\\/mscvprojects.ri.cmu.edu\\\/2025team15\\\/wp-content\\\/uploads\\\/sites\\\/119\\\/2025\\\/05\\\/image-3.png\",\"width\":1074,\"height\":782},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/mscvprojects.ri.cmu.edu\\\/2025team15\\\/methods\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/mscvprojects.ri.cmu.edu\\\/2025team15\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Methods\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/mscvprojects.ri.cmu.edu\\\/2025team15\\\/#website\",\"url\":\"https:\\\/\\\/mscvprojects.ri.cmu.edu\\\/2025team15\\\/\",\"name\":\"LVLM Multi-image VQA Dehallucination\",\"description\":\"Authors: Dongyu Yao, Keling Yao, Harry Chi; Advisor: Prof. Katia Sycara and Dr. Yaqi Xie\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/mscvprojects.ri.cmu.edu\\\/2025team15\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Methods - LVLM Multi-image VQA Dehallucination","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/methods\/","og_locale":"en_US","og_type":"article","og_title":"Methods - LVLM Multi-image VQA Dehallucination","og_description":"Overview Our method focuses on reducing hallucination in Vision-Language Models (VLMs) when processing multi-image visual question answering (VQA) tasks. We propose two novel techniques:&nbsp;Attribute Visual Prompting&nbsp;and&nbsp;Contrastive-learning-based Fine-tuning. Attribute Visual Prompting Overview of Methods Our method adopts a divide-and-conquer fusion strategy to guide VLMs toward more reliable and discriminative reasoning. The pipeline consists of three key &hellip; Continue reading \"Methods\"","og_url":"https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/methods\/","og_site_name":"LVLM Multi-image VQA Dehallucination","article_modified_time":"2025-12-12T11:53:49+00:00","og_image":[{"width":1074,"height":782,"url":"https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/wp-content\/uploads\/sites\/119\/2025\/05\/image-3.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/methods\/","url":"https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/methods\/","name":"Methods - LVLM Multi-image VQA Dehallucination","isPartOf":{"@id":"https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/#website"},"primaryImageOfPage":{"@id":"https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/methods\/#primaryimage"},"image":{"@id":"https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/methods\/#primaryimage"},"thumbnailUrl":"https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/wp-content\/uploads\/sites\/119\/2025\/05\/image-3-1024x746.png","datePublished":"2025-05-06T05:47:48+00:00","dateModified":"2025-12-12T11:53:49+00:00","breadcrumb":{"@id":"https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/methods\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/methods\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/methods\/#primaryimage","url":"https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/wp-content\/uploads\/sites\/119\/2025\/05\/image-3.png","contentUrl":"https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/wp-content\/uploads\/sites\/119\/2025\/05\/image-3.png","width":1074,"height":782},{"@type":"BreadcrumbList","@id":"https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/methods\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/"},{"@type":"ListItem","position":2,"name":"Methods"}]},{"@type":"WebSite","@id":"https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/#website","url":"https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/","name":"LVLM Multi-image VQA Dehallucination","description":"Authors: Dongyu Yao, Keling Yao, Harry Chi; Advisor: Prof. Katia Sycara and Dr. Yaqi Xie","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/wp-json\/wp\/v2\/pages\/43","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/wp-json\/wp\/v2\/users\/231"}],"replies":[{"embeddable":true,"href":"https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/wp-json\/wp\/v2\/comments?post=43"}],"version-history":[{"count":12,"href":"https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/wp-json\/wp\/v2\/pages\/43\/revisions"}],"predecessor-version":[{"id":104,"href":"https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/wp-json\/wp\/v2\/pages\/43\/revisions\/104"}],"wp:attachment":[{"href":"https:\/\/mscvprojects.ri.cmu.edu\/2025team15\/wp-json\/wp\/v2\/media?parent=43"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}