Home Technology peripherals AI CVPR 2024 | Good at processing complex scenes and language expressions, Tsinghua & Bosch proposed a new instance segmentation network architecture MagNet

CVPR 2024 | Good at processing complex scenes and language expressions, Tsinghua & Bosch proposed a new instance segmentation network architecture MagNet

Apr 26, 2024 pm 06:10 PM
project referential segmentation

CVPR 2024 | 擅长处理复杂场景和语言表达,清华&博世提出全新实例分割网络架构MagNet

The AIxiv column is a column where this site publishes academic and technical content. In the past few years, the AIxiv column of this site has received more than 2,000 reports, covering top laboratories from major universities and companies around the world, effectively promoting academic exchanges and dissemination. If you have excellent work that you want to share, please feel free to contribute or contact us for reporting. Submission email: liyazhou@jiqizhixin.com; zhaoyunfeng@jiqizhixin.com.

Referring Image Segmentation (RIS) is a very challenging multi-modal task that requires the algorithm to be able to simultaneously understand fine-grained human language and visual image information, and segment the objects referred to by sentences in the image at the pixel level. Breakthroughs in RIS technology are expected to bring revolutionary changes in many fields such as human-computer interaction, image editing, and autonomous driving. It can greatly improve the efficiency and experience of human-machine collaboration. Although the current state-of-the-art RIS algorithms have made significant progress, they still face the problem of modality gap, that is, the distribution of image and text features are not completely aligned. This problem is particularly acute when dealing with complex referential language expressions and rare contexts.

CVPR 2024 | 擅长处理复杂场景和语言表达,清华&博世提出全新实例分割网络架构MagNet

Figure 1: Schematic diagram of the importance of fine-grained language-image alignment capabilities to RIS. The red mask is the prediction result of LAVT, one of the most advanced RIS algorithms currently, while the yellow dotted box is the correct annotation.

Current RIS research mainly focuses on designing novel loss functions or introducing innovative network architectures/modules to enhance language-image distribution alignment . Despite significant progress, two fundamental issues remain that result in their inadequacy in fine-grained visual grounding:

1. These methods mainly rely on sentence-level language features for language-image alignment, resulting in their weak language-image alignment capabilities at the text level.
2. These methods often lack explicit supervision signals during the training process and cannot effectively teach the model to perform fine-grained alignment, causing them to perform poorly when processing complex referential languages.

CVPR 2024 | 擅长处理复杂场景和语言表达,清华&博世提出全新实例分割网络架构MagNet

##                                                                                                                                                                                                                                   In a recent CVPR 2024 work, a joint research team from the Department of Automation of Tsinghua University and Bosch Central Research Institute designed a new auxiliary task Mask Grounding. This task aims to explicitly teach the model to learn fine-grained correspondences between text and visual objects by randomly masking parts of text words and letting the algorithm learn to predict their true identities. In addition, they also proposed a novel cross-modal Alignment Module and a novel cross-modal alignment loss function (Cross-modal Alignment Loss) to further comprehensively reduce the gap between language and images. modal gap between. Based on these technologies, they designed a new instance segmentation network architecture Mask-grounded Network (MagNet).

Paper title: Mask Grounding for Referring Image Segmentation

CVPR 2024 | 擅长处理复杂场景和语言表达,清华&博世提出全新实例分割网络架构MagNetPaper address: https://arxiv .org/abs/2312.12198

  • On the RefCOCO, RefCOCO and G-Ref data sets, MagNet significantly surpassed all previous optimal algorithms, The core indicator of overall Interaction over Union (oIoU) increased significantly by 2.48 percentage points. The visualization results also confirm that MagNet has excellent performance in processing complex scenes and language expressions.

Method

##MagNet consists of 3 independent and complementary The modules are composed of Mask Grounding, Cross-modal Alignment Module and Cross-modal Alignment Loss.

1.Mask Grounding
                                                                                                                                                                                                           Figure 3: Mask Grounding flow chart

As shown in Figure 3, given the input image, the corresponding In the case of referential expressions and segmentation masks, the author randomly selects certain words in the sentence and replaces them with a special learnable mask token. The model is then trained to predict the actual identity of these replaced words. By successfully predicting the identity of the masked token, the model is able to understand which words in the text correspond to which parts of the image, learning fine-grained language-image alignment capabilities in the process. To perform this auxiliary task, the center coordinates of the mask region are first extracted and passed to a 2-layer MLP to encode the features of the segmentation mask. At the same time, a linear layer is used to map the language features to the same dimensions as the image features. Then, these features are jointly processed using the proposed mask token predictor, and the attention mechanism module is used for mask token prediction. Although Mask Grounding requires an additional forward pass through the language encoder to process the masked expressions, the overall computational cost is almost negligible because the language encoder is so small.

2.Cross-modal Alignment Module (CAM)

CVPR 2024 | 擅长处理复杂场景和语言表达,清华&博世提出全新实例分割网络架构MagNet

##                                                                                                                                                                                                               Figure 4: Cross-modal Alignment Module structure diagram

##As shown in Figure 4, in order to further improve the model performance, the author also proposed a cross-modal Alignment Module Modality Alignment Module (CAM), which enhances language-image alignment by injecting global context priors into image features before performing language-image fusion. CAM first generates K feature maps of different pyramid scales using pooling operations with different window sizes. Then, each feature map is passed through a 3-layer MLP to better extract global information and performs a cross-attention operation with another modality. Next, all output features are upsampled to the original feature map size by bilinear interpolation and concatenated in the channel dimension. Subsequently, a 2-layer MLP is used to reduce the number of concatenated feature channels back to the original dimensions. To prevent multimodal signals from overwhelming the original signal, a gated unit with Tanh nonlinearity is used to modulate the final output. Finally, this gated feature is added back to the input features and passed to the next stage of the image or language encoder. In the authors' implementation, CAM is added at the end of each stage of the image and speech encoders.

3.Cross-modal Alignment Loss (CAL)

CVPR 2024 | 擅长处理复杂场景和语言表达,清华&博世提出全新实例分割网络架构MagNet

##                                                                                                                                                                                                                                Figure 5: Cross-modal Alignment Loss formula
In order to supervise the model alignment of language and image features, the author proposes a novel cross-modal Alignment Loss formula State alignment loss function (CAL). Figure 5 shows the mathematical formula of this loss function. Unlike previous work, CAL considers both pixel-to-Pixel (P2P) and pixel-to-text (P2T) alignment. Accurate pixel-to-pixel alignment ensures that the model can segment and output segmentation masks with accurate shapes and boundaries, while accurate pixel-to-text alignment enables the model to correctly associate text descriptions with the image regions they match.

Experiment
In Table 1, the author evaluates MagNet using oIoU metric, and Performance comparison with existing state-of-the-art algorithms. The test data are RefCOCO, RefCOCO and G-Ref. In both single and multiple/additional dataset settings, MagNet's performance is all SOTA on these datasets.
                                                                                                                                                                                                                      Table 1: Experimental results

##Visualized resultsCVPR 2024 | 擅长处理复杂场景和语言表达,清华&博世提出全新实例分割网络架构MagNet
                                                                                                                                                                                                                    Figure 6: MagNet visualization results

##In Figure 6, we can see that the visualization results of MagNet are also It stands out, outperforming the baseline LAVT in many difficult scenarios.

Summary

This article delves into the field of reference segmentation (RIS) challenges and current issues, especially the shortcomings in fine-grained language-image alignment. In response to these problems, researchers from Tsinghua University and Bosch Central Research Institute proposed a new method called MagNet, which comprehensively improves language by introducing the auxiliary task Mask Grounding, a cross-modal alignment module and a cross-modal alignment loss function. and the alignment effect between images. Experiments prove that MagNet achieves significantly better performance on the RefCOCO, RefCOCO and G-Ref data sets, surpassing the previous state-of-the-art algorithms and showing strong generalization capabilities. The visualization results also confirm the superiority of MagNet in processing complex scenes and language expressions. This research provides useful inspiration for the further development of the field of reference segmentation and is expected to promote greater breakthroughs in this field.

Team introduction

This paper comes from the Department of Automation, Tsinghua University (https:/ /www.au.tsinghua.edu.cn) and Bosch Central Research Institute (https://www.bosch.com/research/). One of the first authors of the paper, Zhuang Rongxian, is a doctoral student at Tsinghua University and is an intern at Bosch Academia Sinica; the project leader is Dr. Qiu Xuchong, a senior R&D scientist at Bosch Academia Sinica; the corresponding author is Professor Huang Gao from the Department of Automation, Tsinghua University.

The above is the detailed content of CVPR 2024 | Good at processing complex scenes and language expressions, Tsinghua & Bosch proposed a new instance segmentation network architecture MagNet. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Will R.E.P.O. Have Crossplay?
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

The author of ControlNet has another hit! The whole process of generating a painting from a picture, earning 1.4k stars in two days The author of ControlNet has another hit! The whole process of generating a painting from a picture, earning 1.4k stars in two days Jul 17, 2024 am 01:56 AM

It is also a Tusheng video, but PaintsUndo has taken a different route. ControlNet author LvminZhang started to live again! This time I aim at the field of painting. The new project PaintsUndo has received 1.4kstar (still rising crazily) not long after it was launched. Project address: https://github.com/lllyasviel/Paints-UNDO Through this project, the user inputs a static image, and PaintsUndo can automatically help you generate a video of the entire painting process, from line draft to finished product. follow. During the drawing process, the line changes are amazing. The final video result is very similar to the original image: Let’s take a look at a complete drawing.

Topping the list of open source AI software engineers, UIUC's agent-less solution easily solves SWE-bench real programming problems Topping the list of open source AI software engineers, UIUC's agent-less solution easily solves SWE-bench real programming problems Jul 17, 2024 pm 10:02 PM

The AIxiv column is a column where this site publishes academic and technical content. In the past few years, the AIxiv column of this site has received more than 2,000 reports, covering top laboratories from major universities and companies around the world, effectively promoting academic exchanges and dissemination. If you have excellent work that you want to share, please feel free to contribute or contact us for reporting. Submission email: liyazhou@jiqizhixin.com; zhaoyunfeng@jiqizhixin.com The authors of this paper are all from the team of teacher Zhang Lingming at the University of Illinois at Urbana-Champaign (UIUC), including: Steven Code repair; Deng Yinlin, fourth-year doctoral student, researcher

Posthumous work of the OpenAI Super Alignment Team: Two large models play a game, and the output becomes more understandable Posthumous work of the OpenAI Super Alignment Team: Two large models play a game, and the output becomes more understandable Jul 19, 2024 am 01:29 AM

If the answer given by the AI ​​model is incomprehensible at all, would you dare to use it? As machine learning systems are used in more important areas, it becomes increasingly important to demonstrate why we can trust their output, and when not to trust them. One possible way to gain trust in the output of a complex system is to require the system to produce an interpretation of its output that is readable to a human or another trusted system, that is, fully understandable to the point that any possible errors can be found. For example, to build trust in the judicial system, we require courts to provide clear and readable written opinions that explain and support their decisions. For large language models, we can also adopt a similar approach. However, when taking this approach, ensure that the language model generates

From RLHF to DPO to TDPO, large model alignment algorithms are already 'token-level' From RLHF to DPO to TDPO, large model alignment algorithms are already 'token-level' Jun 24, 2024 pm 03:04 PM

The AIxiv column is a column where this site publishes academic and technical content. In the past few years, the AIxiv column of this site has received more than 2,000 reports, covering top laboratories from major universities and companies around the world, effectively promoting academic exchanges and dissemination. If you have excellent work that you want to share, please feel free to contribute or contact us for reporting. Submission email: liyazhou@jiqizhixin.com; zhaoyunfeng@jiqizhixin.com In the development process of artificial intelligence, the control and guidance of large language models (LLM) has always been one of the core challenges, aiming to ensure that these models are both powerful and safe serve human society. Early efforts focused on reinforcement learning methods through human feedback (RL

arXiv papers can be posted as 'barrage', Stanford alphaXiv discussion platform is online, LeCun likes it arXiv papers can be posted as 'barrage', Stanford alphaXiv discussion platform is online, LeCun likes it Aug 01, 2024 pm 05:18 PM

cheers! What is it like when a paper discussion is down to words? Recently, students at Stanford University created alphaXiv, an open discussion forum for arXiv papers that allows questions and comments to be posted directly on any arXiv paper. Website link: https://alphaxiv.org/ In fact, there is no need to visit this website specifically. Just change arXiv in any URL to alphaXiv to directly open the corresponding paper on the alphaXiv forum: you can accurately locate the paragraphs in the paper, Sentence: In the discussion area on the right, users can post questions to ask the author about the ideas and details of the paper. For example, they can also comment on the content of the paper, such as: "Given to

A significant breakthrough in the Riemann Hypothesis! Tao Zhexuan strongly recommends new papers from MIT and Oxford, and the 37-year-old Fields Medal winner participated A significant breakthrough in the Riemann Hypothesis! Tao Zhexuan strongly recommends new papers from MIT and Oxford, and the 37-year-old Fields Medal winner participated Aug 05, 2024 pm 03:32 PM

Recently, the Riemann Hypothesis, known as one of the seven major problems of the millennium, has achieved a new breakthrough. The Riemann Hypothesis is a very important unsolved problem in mathematics, related to the precise properties of the distribution of prime numbers (primes are those numbers that are only divisible by 1 and themselves, and they play a fundamental role in number theory). In today's mathematical literature, there are more than a thousand mathematical propositions based on the establishment of the Riemann Hypothesis (or its generalized form). In other words, once the Riemann Hypothesis and its generalized form are proven, these more than a thousand propositions will be established as theorems, which will have a profound impact on the field of mathematics; and if the Riemann Hypothesis is proven wrong, then among these propositions part of it will also lose its effectiveness. New breakthrough comes from MIT mathematics professor Larry Guth and Oxford University

Axiomatic training allows LLM to learn causal reasoning: the 67 million parameter model is comparable to the trillion parameter level GPT-4 Axiomatic training allows LLM to learn causal reasoning: the 67 million parameter model is comparable to the trillion parameter level GPT-4 Jul 17, 2024 am 10:14 AM

Show the causal chain to LLM and it learns the axioms. AI is already helping mathematicians and scientists conduct research. For example, the famous mathematician Terence Tao has repeatedly shared his research and exploration experience with the help of AI tools such as GPT. For AI to compete in these fields, strong and reliable causal reasoning capabilities are essential. The research to be introduced in this article found that a Transformer model trained on the demonstration of the causal transitivity axiom on small graphs can generalize to the transitive axiom on large graphs. In other words, if the Transformer learns to perform simple causal reasoning, it may be used for more complex causal reasoning. The axiomatic training framework proposed by the team is a new paradigm for learning causal reasoning based on passive data, with only demonstrations

The first Mamba-based MLLM is here! Model weights, training code, etc. have all been open source The first Mamba-based MLLM is here! Model weights, training code, etc. have all been open source Jul 17, 2024 am 02:46 AM

The AIxiv column is a column where this site publishes academic and technical content. In the past few years, the AIxiv column of this site has received more than 2,000 reports, covering top laboratories from major universities and companies around the world, effectively promoting academic exchanges and dissemination. If you have excellent work that you want to share, please feel free to contribute or contact us for reporting. Submission email: liyazhou@jiqizhixin.com; zhaoyunfeng@jiqizhixin.com. Introduction In recent years, the application of multimodal large language models (MLLM) in various fields has achieved remarkable success. However, as the basic model for many downstream tasks, current MLLM consists of the well-known Transformer network, which

See all articles