search
HomeTechnology peripheralsAIFrom individual adversarial to manifold adversarial: CVPR 2023 explores generalizable manifold adversarial attacks

Is the facial recognition system that claims to be 99% accurate really unbreakable? In fact, the face recognition system can be easily broken by making some changes in face photos that do not affect visual judgment. For example, the girl next door and the male celebrity can be judged as the same person. This is an adversarial attack. The goal of adversarial attacks is to find adversarial samples that are natural and can confuse the neural network. In essence, finding adversarial samples is to find the vulnerabilities of the neural network.

Recently, a research team from Dongfang University of Technology proposed a paradigm of generalized manifold adversarial attack (GMAA),

promoting the traditional "point" attack mode to The "surface" attack mode greatly improves the generalization ability of the adversarial attack model and develops a new idea for the work of adversarial attacks.

This research improves previous work from two aspects: target domain and adversarial domain. On the target domain, this study finds more powerful adversarial examples with high generalization by attacking the set of states of the target identity. For the adversarial domain, previous work was looking for discrete adversarial samples, that is, finding several "loopholes" (points) of the system, while this research is looking for continuous adversarial manifolds, that is, finding the fragile integral parts of the neural network. Piece "area" (face). In addition, this study introduces domain knowledge of expression editing and proposes a new paradigm based on expression state space instantiation. By continuously sampling the generated adversarial manifold, we can obtain highly generalizable adversarial samples with continuous expression changes. Compared with methods such as makeup, lighting, and adding perturbations, the

expression state space is more universal and natural, and is not affected by gender or lighting. Impact. Research paper has been accepted for CVPR 2023.

从个体对抗到流形对抗:CVPR 2023探索可泛化的流形对抗攻击

Paper link: Please click here to view the paper

The content that needs to be rewritten is: Code link https://github.com/tokaka22/GMAA

Introduction method

In the target domain part, previous work has been to design adversarial samples for a specific photo of target identity A. However, as shown in Figure 2, when the adversarial sample generated by this attack method is used to attack another photo of A, the attack effect will be significantly reduced. In the face of such attacks, regularly changing the photos in the facial recognition database is naturally an effective defense measure. However, the GMAA proposed in this study not only trains on a single sample of the target identity, but also looks for adversarial samples that can attack the set of target identity states.

Such highly generalized adversarial samples face the updated face recognition library Have better attack performance. These more powerful adversarial examples also correspond to the weaker areas of the neural network and are worthy of in-depth exploration.

In previous research in the field of adversarial, people usually look for one or several discrete adversarial samples, which is equivalent to finding one or several "points" where the neural network is vulnerable in high-dimensional space. However, this study believes that neural networks may be vulnerable across the entire "face" and therefore should find all adversarial examples on this "face". Therefore, the goal of this research is to find adversarial manifolds in high-dimensional space

To sum up, GMAA is a new attack paradigm that uses

adversarial manifolds to attack the state set of the target identity .

Please refer to Figure 1, which is the core idea of ​​the article

从个体对抗到流形对抗:CVPR 2023探索可泛化的流形对抗攻击

从个体对抗到流形对抗:CVPR 2023探索可泛化的流形对抗攻击

Specifically, this study introduced facial Facial Action Coding System (FACS) is used as domain knowledge to instantiate the proposed new attack paradigm. FACS is a system for facial expression encoding. It divides the face into different muscle units. Each element in the AU vector corresponds to a muscle unit. The size of the vector element represents the muscle activity of the corresponding unit, thereby encoding the expression state. . For example, in the figure below, the first element of the AU vector, AU1, represents the degree to which the inner eyebrow is raised

从个体对抗到流形对抗:CVPR 2023探索可泛化的流形对抗攻击

From "Anatomy of Facial Expressions"

For the target field, this research aims to attack target sets containing multiple expression states to achieve better attack performance on unknown target photos; for the adversarial field, this research aims to establish a one-to-one correspondence with the AU space. Adversarial manifold, you can sample adversarial samples on the adversarial manifold by changing the AU value. By continuously changing the AU value, you can generate adversarial samples with continuously changing expressions

It is worth noting that this study uses expression state space to instantiate the GMAA attack paradigm. This is because expression is the most common state in human facial activities, and the expression state space is relatively stable and will not be affected by race or gender (light can change skin color, and makeup can affect gender) . In fact, as long as other suitable state spaces can be found, this attack paradigm can be generalized and applied to other adversarial attack tasks in nature.

The content that needs to be rewritten is: model results

The visual results of this study are shown in the animation below. Each frame of animation is an adversarial sample obtained by sampling on the adversarial manifold. Continuous sampling can obtain a series of adversarial examples with continuously changing expressions (left). The red value in the animation represents the similarity between the adversarial sample of the current frame and the target sample (on the right) under the Face face recognition system

从个体对抗到流形对抗:CVPR 2023探索可泛化的流形对抗攻击

In Table 1, column The black box attack success rates of four face recognition models on two data sets are shown. Among them, MAA is a reduced version of GMAA. MAA only extends the point attack model to manifold attacks in the adversarial domain. In the target domain, it still attacks a single target photo. The state set of the attack target is a common experimental setting. The article adds this setting to the three methods including MAA in Table 2 (the bold part in the table is the result of adding this setting, in Table 2 (A "G" is added before the name of the method to distinguish), which verifies that the expansion of the target domain can improve the generalization of adversarial samples

从个体对抗到流形对抗:CVPR 2023探索可泛化的流形对抗攻击
Figure 4 shows the two The results of an attack on a commercial face recognition system API

从个体对抗到流形对抗:CVPR 2023探索可泛化的流形对抗攻击
The content is rewritten as follows: The research also explores the impact of different expressions on attack performance, as well as samples in the state set The impact of quantity on attack generalization performance

从个体对抗到流形对抗:CVPR 2023探索可泛化的流形对抗攻击

从个体对抗到流形对抗:CVPR 2023探索可泛化的流形对抗攻击
In Figure 6, a comparison of the visual results of different methods is shown. The MAA method sampled 20 adversarial samples on the adversarial manifold. From the results, it can be seen that the visualization effect is more natural

从个体对抗到流形对抗:CVPR 2023探索可泛化的流形对抗攻击
Of course, not all data sets contain different status pictures. In this case, how to expand the data in the target field? This study proposes a feasible solution, which is to use AU vectors and expression editing models to generate a set of target states. The study also shows the results of attacking the synthesized target state set, and the results show that the generalization performance has improved

从个体对抗到流形对抗:CVPR 2023探索可泛化的流形对抗攻击

The content that needs to be rewritten is: Principle and method

Rewritten content: The core part of the model includes the WGAN-GP-based generation module, expression supervision module, transferability enhancement module and generalized attack module. Among them, the generalized attack module can realize the aggregation function of attack target states, and the transferability enhancement module is based on previous research work. For fair comparison, this module has been added to all benchmark models. The expression supervision module consists of four trained expression editors, and achieves expression conversion of adversarial samples through global structure supervision and local detail supervision

从个体对抗到流形对抗:CVPR 2023探索可泛化的流形对抗攻击

In terms of the expression supervision module, the paper The supporting materials provide corresponding ablation experiments, which verify that local detail supervision can reduce artifacts and blurring of generated images, effectively improve the visual quality of adversarial samples, and also improve the accuracy of expression synthesis of adversarial samples

从个体对抗到流形对抗:CVPR 2023探索可泛化的流形对抗攻击

In addition, the paper defines the concepts of

continuous adversarial manifolds and semantic continuous adversarial manifolds, and proves in detail the generated adversarial manifold and AU vector space Homeomorphism.

从个体对抗到流形对抗:CVPR 2023探索可泛化的流形对抗攻击

从个体对抗到流形对抗:CVPR 2023探索可泛化的流形对抗攻击

Summary is the induction and generalization of existing information or experience. It is a process of organizing and summarizing thoughts, aiming to extract the most important ideas and conclusions. Summarizing can help us better understand and remember what we have learned, and it can also help us better communicate and share our ideas. By summarizing, we can simplify complex information and distill it down to its core points, making it easier to understand and apply. Summary is an important tool in the learning and communication process. It can help us process and utilize large amounts of information more efficiently. Whether in study, work or life, summarizing is an essential skill

To sum up, this research proposes a new attack paradigm called GMAA, and at the same time Expanded the target domain and countermeasure domain, improving the performance of the attack. For the target domain, GMAA improves the generalization ability to the target identity by attacking a collection of states instead of a single image. Furthermore, GMAA extends the adversarial domain from discrete points to semantically continuous adversarial manifolds ("point-to-surface") . This study instantiates the GMAA attack paradigm by introducing domain knowledge of expression editing. Extensive comparative experiments prove that GMAA has better attack performance and more natural visual quality than other competing models.

The above is the detailed content of From individual adversarial to manifold adversarial: CVPR 2023 explores generalizable manifold adversarial attacks. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:机器之心. If there is any infringement, please contact admin@php.cn delete
The AI Skills Gap Is Slowing Down Supply ChainsThe AI Skills Gap Is Slowing Down Supply ChainsApr 26, 2025 am 11:13 AM

The term "AI-ready workforce" is frequently used, but what does it truly mean in the supply chain industry? According to Abe Eshkenazi, CEO of the Association for Supply Chain Management (ASCM), it signifies professionals capable of critic

How One Company Is Quietly Working To Transform AI ForeverHow One Company Is Quietly Working To Transform AI ForeverApr 26, 2025 am 11:12 AM

The decentralized AI revolution is quietly gaining momentum. This Friday in Austin, Texas, the Bittensor Endgame Summit marks a pivotal moment, transitioning decentralized AI (DeAI) from theory to practical application. Unlike the glitzy commercial

Nvidia Releases NeMo Microservices To Streamline AI Agent DevelopmentNvidia Releases NeMo Microservices To Streamline AI Agent DevelopmentApr 26, 2025 am 11:11 AM

Enterprise AI faces data integration challenges The application of enterprise AI faces a major challenge: building systems that can maintain accuracy and practicality by continuously learning business data. NeMo microservices solve this problem by creating what Nvidia describes as "data flywheel", allowing AI systems to remain relevant through continuous exposure to enterprise information and user interaction. This newly launched toolkit contains five key microservices: NeMo Customizer handles fine-tuning of large language models with higher training throughput. NeMo Evaluator provides simplified evaluation of AI models for custom benchmarks. NeMo Guardrails implements security controls to maintain compliance and appropriateness

AI Paints A New Picture For The Future Of Art And DesignAI Paints A New Picture For The Future Of Art And DesignApr 26, 2025 am 11:10 AM

AI: The Future of Art and Design Artificial intelligence (AI) is changing the field of art and design in unprecedented ways, and its impact is no longer limited to amateurs, but more profoundly affecting professionals. Artwork and design schemes generated by AI are rapidly replacing traditional material images and designers in many transactional design activities such as advertising, social media image generation and web design. However, professional artists and designers also find the practical value of AI. They use AI as an auxiliary tool to explore new aesthetic possibilities, blend different styles, and create novel visual effects. AI helps artists and designers automate repetitive tasks, propose different design elements and provide creative input. AI supports style transfer, which is to apply a style of image

How Zoom Is Revolutionizing Work With Agentic AI: From Meetings To MilestonesHow Zoom Is Revolutionizing Work With Agentic AI: From Meetings To MilestonesApr 26, 2025 am 11:09 AM

Zoom, initially known for its video conferencing platform, is leading a workplace revolution with its innovative use of agentic AI. A recent conversation with Zoom's CTO, XD Huang, revealed the company's ambitious vision. Defining Agentic AI Huang d

The Existential Threat To UniversitiesThe Existential Threat To UniversitiesApr 26, 2025 am 11:08 AM

Will AI revolutionize education? This question is prompting serious reflection among educators and stakeholders. The integration of AI into education presents both opportunities and challenges. As Matthew Lynch of The Tech Edvocate notes, universit

The Prototype: American Scientists Are Looking For Jobs AbroadThe Prototype: American Scientists Are Looking For Jobs AbroadApr 26, 2025 am 11:07 AM

The development of scientific research and technology in the United States may face challenges, perhaps due to budget cuts. According to Nature, the number of American scientists applying for overseas jobs increased by 32% from January to March 2025 compared with the same period in 2024. A previous poll showed that 75% of the researchers surveyed were considering searching for jobs in Europe and Canada. Hundreds of NIH and NSF grants have been terminated in the past few months, with NIH’s new grants down by about $2.3 billion this year, a drop of nearly one-third. The leaked budget proposal shows that the Trump administration is considering sharply cutting budgets for scientific institutions, with a possible reduction of up to 50%. The turmoil in the field of basic research has also affected one of the major advantages of the United States: attracting overseas talents. 35

All About Open AI's Latest GPT 4.1 Family - Analytics VidhyaAll About Open AI's Latest GPT 4.1 Family - Analytics VidhyaApr 26, 2025 am 10:19 AM

OpenAI unveils the powerful GPT-4.1 series: a family of three advanced language models designed for real-world applications. This significant leap forward offers faster response times, enhanced comprehension, and drastically reduced costs compared t

See all articles

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function