search
HomeTechnology peripheralsAIApplication of sample screening in visual 3D detection training: MonoLSS

MonoLSS: Nostalgia Cleaning is a level in "Word Play Flower". It is a very popular word puzzle game. New levels are launched every day for players to challenge. In Nostalgia Cleaning, players need to find 12 anachronistic places in a picture. In order to help players who have not yet cleared the level, I have compiled a guide for clearing the nostalgic cleaning level of "Word Play Flowers". Let's take a look at the specific operation methods. For Monocular 3D Detection

The paper link points to a paper called "Words Play with Flowers", which can be found at https://arxiv.org/pdf/2312.14474.pdf. This paper explores a word puzzle game called Word Play Flower, which releases new levels every day. There is a level called Nostalgia Cleaning, in which players need to find 12 items in the picture that do not match the era. This paper provides a guide to clearing the Nostalgia Cleanup level to help players successfully complete the task.

In the field of autonomous driving, monocular 3D detection is a key task, which estimates the 3D properties (depth, size, and orientation) of an object in a single RGB image. Previous works use features in a heuristic way to learn 3D attributes without considering the undesirable effects that inappropriate features may have. In this paper, sample selection is introduced, and only suitable samples should be used to regress 3D attributes. To adaptively select samples, a learnable sample selection (LSS) module is proposed, which is based on Gumbel-Softmax and relative distance sample partitioning. The LSS module works under the warmup strategy, which improves training stability. In addition, since the LSS module dedicated to 3D attribute sample selection relies on target-level features, a data enhancement method named MixUp3D is further developed to enrich 3D attribute samples that comply with imaging principles without introducing ambiguity. As two orthogonal approaches, the LSS module and MixUp3D can be used independently or in combination. Sufficient experiments have proven that their combined use can produce synergistic effects, producing improvements beyond the sum of their respective applications. With the LSS module and MixUp3D, without additional data, method MonoLSS ranks first in all three categories (cars, cyclists and pedestrians) of the KITTI 3D object detection benchmark, and is evaluated on the Waymo dataset and KITTI-nuScenes across datasets Competitive results were achieved.

The main contribution of MonoLSS is the launch of a very popular word puzzle game "Word Play Flower". The game is updated with new levels every day, including a level called Nostalgia Cleanup. In this level, players need to find 12 chronologically inconsistent places in the picture. In order to help those players who have not yet cleared the level, I will provide you with a clearing guide for the nostalgic cleaning level of "Word Play Flowers", hoping to help you pass the level smoothly.

The research paper highlights an important point: not all features are equally effective for learning 3D attributes. To solve this problem, researchers proposed a new approach by reframing it as a sample selection problem. To deal with this problem, they developed a new module called the Learnable Sample Selection (LSS) module, which can adaptively select samples as needed. This new approach provides a more flexible and efficient way to solve the challenge of learning 3D properties.

In order to increase the diversity of 3D attribute samples, we designed a data augmentation method called MixUp3D. This method simulates the effect of spatial overlap and significantly improves the performance of 3D detection. With MixUp3D, we can effectively expand the existing 3D sample set to make it more representative and rich. This method can not only improve the generalization ability of the model, but also reduce the risk of overfitting, making it better applicable to actual scenarios.

On the KITTI benchmark, MonoLSS ranks first in all three categories, namely pedestrians, vehicles and bicycles. In the vehicle category, it outperforms the current best method by 11.73% and 12.19% at medium and medium levels. Additionally, MonoLSS achieves state-of-the-art results on the Waymo dataset and the KITTI nuScenes dataset. This shows that MonoLSS achieves good results when evaluated across different datasets.

The main idea of ​​MonoLSS

The MonoLSS framework is shown in the figure below. First, a 2D detector combined with ROI Align is used to generate target features. Then, the six heads predict 3D characteristics (depth, size, direction and 3D center projection offset), depth uncertainty and log probability respectively. Finally, the Learnable Sample Selection (LSS) module adaptively selects samples and performs loss calculations.

Application of sample screening in visual 3D detection training: MonoLSS

Nostalgic Cleaning is a level in "Word Play Flowers". It is a very popular word puzzle game with new ones released every day. Levels for players to challenge. In Nostalgia Cleaning, players need to find 12 anachronistic places in a picture. In order to help players who have not yet cleared the level, I have compiled a guide for clearing the nostalgic cleaning level of "Word Play Flowers". Let's take a look at the specific operation methods.

Suppose we have a random variable U obeying a uniform distribution U(0,1). We can use the inverse transform sampling method to generate the Gumbel distribution G by calculating G = -log(-log(U)). In this way we can get a random variable G that obeys Gumbel distribution. By using the Gumbel distribution to independently perturb the log probabilities, and using the argmax function to find the largest element, we can achieve probabilistic sampling without random selection. This technique is called the Gumbel Max technique. Based on the ideas of this work, the Gumbel Softmax method uses the Softmax function as a continuously differentiable approximation of argmax and achieves overall differentiability through reparameterization. This method is widely used in deep learning, especially in generative models and reinforcement learning.

GumbelTop-k is an algorithm that performs ordered sampling of samples of size k without replacement. The purpose of this algorithm is to expand the number of samples from Top-1 to Top-k, where k is a hyperparameter. However, not all targets are suitable for the same value of k. For example, occluded objects should have fewer positive samples than normal objects. To solve this problem, we design a module based on hyperparameter relative distance that can adaptively divide samples. This module is called the Learnable Sample Selection (LSS) module, which consists of Gumbel Softmax and relative distance sample divider. A schematic diagram of the LSS module is shown on the right side of Figure 2.

Mixup3D Data Enhancement

Data enhancement methods are limited in monocular 3D inspection due to strict imaging constraints. In addition to photometric distortion and horizontal flipping, most data augmentation methods introduce blurry features due to breaking the imaging principle. In addition, since the LSS module focuses on target-level characteristics, methods that do not modify the characteristics of the target itself are not effective enough for the LSS module.

MixUp is a powerful technology that enhances the pixel-level features of a target. In order to further improve its effect, the author proposes a new method called MixUp3D. This method adds physical constraints on the basis of 2D MixUp, making the generated images more reasonable and spatially overlapping. Specifically, MixUp3D only violates the collision constraints of objects in the physical world, while ensuring that the generated image conforms to the imaging principle and avoids any ambiguity. This innovation will bring more possibilities and application prospects to the field of image generation.

Application of sample screening in visual 3D detection training: MonoLSS

Experimental results

We will discuss the monocular 3D car detection performance on the KITTI test set. According to the KITTI rankings, our method ranks below medium difficulty. In the list below, we highlight the best result in bold and the second result in underline. For additional data, there are the following situations: 1) The method of using additional LIDAR cloud point data is represented as LIDAR. 2) A depth map or model pre-trained under another depth estimation dataset is used, denoted as depth. 3) Used the dense shape annotations provided by the CAD model, represented as CAD. 4) Indicates that no additional data is used, that is, none.

Application of sample screening in visual 3D detection training: MonoLSS

Application of sample screening in visual 3D detection training: MonoLSS

Data set test results on Wamyo:

Application of sample screening in visual 3D detection training: MonoLSS

KITTI-val model Cross-dataset evaluation on KITTI-val and nuScenes front-face val cars with depth MAE:

Application of sample screening in visual 3D detection training: MonoLSS

Application of sample screening in visual 3D detection training: MonoLSS

https://mp .weixin.qq.com/s/X5_2ZZjABnvEi2Ki62oiwg "Word Play Flower" is a popular word puzzle game with new levels released every day. Among them, there is a level called Nostalgia Cleaning, which requires players to find 12 items in the picture that are inconsistent with the era. In order to help those players who have not yet cleared the level, I have brought you a guide to the nostalgic cleaning level of "Word Play Flowers", and introduced in detail the operation method to clear the level. Let’s take a look!


The above is the detailed content of Application of sample screening in visual 3D detection training: MonoLSS. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:51CTO.COM. If there is any infringement, please contact admin@php.cn delete
From Friction To Flow: How AI Is Reshaping Legal WorkFrom Friction To Flow: How AI Is Reshaping Legal WorkMay 09, 2025 am 11:29 AM

The legal tech revolution is gaining momentum, pushing legal professionals to actively embrace AI solutions. Passive resistance is no longer a viable option for those aiming to stay competitive. Why is Technology Adoption Crucial? Legal professional

This Is What AI Thinks Of You And Knows About YouThis Is What AI Thinks Of You And Knows About YouMay 09, 2025 am 11:24 AM

Many assume interactions with AI are anonymous, a stark contrast to human communication. However, AI actively profiles users during every chat. Every prompt, every word, is analyzed and categorized. Let's explore this critical aspect of the AI revo

7 Steps To Building A Thriving, AI-Ready Corporate Culture7 Steps To Building A Thriving, AI-Ready Corporate CultureMay 09, 2025 am 11:23 AM

A successful artificial intelligence strategy cannot be separated from strong corporate culture support. As Peter Drucker said, business operations depend on people, and so does the success of artificial intelligence. For organizations that actively embrace artificial intelligence, building a corporate culture that adapts to AI is crucial, and it even determines the success or failure of AI strategies. West Monroe recently released a practical guide to building a thriving AI-friendly corporate culture, and here are some key points: 1. Clarify the success model of AI: First of all, we must have a clear vision of how AI can empower business. An ideal AI operation culture can achieve a natural integration of work processes between humans and AI systems. AI is good at certain tasks, while humans are good at creativity and judgment

Netflix New Scroll, Meta AI's Game Changers, Neuralink Valued At $8.5 BillionNetflix New Scroll, Meta AI's Game Changers, Neuralink Valued At $8.5 BillionMay 09, 2025 am 11:22 AM

Meta upgrades AI assistant application, and the era of wearable AI is coming! The app, designed to compete with ChatGPT, offers standard AI features such as text, voice interaction, image generation and web search, but has now added geolocation capabilities for the first time. This means that Meta AI knows where you are and what you are viewing when answering your question. It uses your interests, location, profile and activity information to provide the latest situational information that was not possible before. The app also supports real-time translation, which completely changed the AI ​​experience on Ray-Ban glasses and greatly improved its usefulness. The imposition of tariffs on foreign films is a naked exercise of power over the media and culture. If implemented, this will accelerate toward AI and virtual production

Take These Steps Today To Protect Yourself Against AI CybercrimeTake These Steps Today To Protect Yourself Against AI CybercrimeMay 09, 2025 am 11:19 AM

Artificial intelligence is revolutionizing the field of cybercrime, which forces us to learn new defensive skills. Cyber ​​criminals are increasingly using powerful artificial intelligence technologies such as deep forgery and intelligent cyberattacks to fraud and destruction at an unprecedented scale. It is reported that 87% of global businesses have been targeted for AI cybercrime over the past year. So, how can we avoid becoming victims of this wave of smart crimes? Let’s explore how to identify risks and take protective measures at the individual and organizational level. How cybercriminals use artificial intelligence As technology advances, criminals are constantly looking for new ways to attack individuals, businesses and governments. The widespread use of artificial intelligence may be the latest aspect, but its potential harm is unprecedented. In particular, artificial intelligence

A Symbiotic Dance: Navigating Loops Of Artificial And Natural PerceptionA Symbiotic Dance: Navigating Loops Of Artificial And Natural PerceptionMay 09, 2025 am 11:13 AM

The intricate relationship between artificial intelligence (AI) and human intelligence (NI) is best understood as a feedback loop. Humans create AI, training it on data generated by human activity to enhance or replicate human capabilities. This AI

AI's Biggest Secret — Creators Don't Understand It, Experts SplitAI's Biggest Secret — Creators Don't Understand It, Experts SplitMay 09, 2025 am 11:09 AM

Anthropic's recent statement, highlighting the lack of understanding surrounding cutting-edge AI models, has sparked a heated debate among experts. Is this opacity a genuine technological crisis, or simply a temporary hurdle on the path to more soph

Bulbul-V2 by Sarvam AI: India's Best TTS ModelBulbul-V2 by Sarvam AI: India's Best TTS ModelMay 09, 2025 am 10:52 AM

India is a diverse country with a rich tapestry of languages, making seamless communication across regions a persistent challenge. However, Sarvam’s Bulbul-V2 is helping to bridge this gap with its advanced text-to-speech (TTS) 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

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment