Subtopic Deep Dive

Weakly Supervised Action Recognition
Research Guide

What is Weakly Supervised Action Recognition?

Weakly Supervised Action Recognition uses video-level labels to train models for localizing actions in untrimmed videos via multiple instance learning and attention mechanisms.

This approach reduces annotation costs by avoiding frame-level labels. Key methods include UntrimmedNets (Wang et al., 2017, 560 citations) and sparse temporal pooling (Nguyen et al., 2018, 413 citations). Over 20 papers from 2009-2020 address this subtopic.

15
Curated Papers
3
Key Challenges

Why It Matters

Weakly supervised methods scale action recognition to large untrimmed video datasets like web videos, cutting labeling costs by 90% compared to full supervision (Wang et al., 2017). They enable applications in surveillance and sports analysis (Vrigkas et al., 2015). Prest et al. (2011) showed object interaction learning boosts real-world transfer to robotics tasks.

Key Research Challenges

Temporal Localization Accuracy

Models struggle to pinpoint action start/end times from video-level labels alone. UntrimmedNets (Wang et al., 2017) improved this but still miss fine-grained boundaries. Nguyen et al. (2018) used sparse pooling yet background frames dilute signals.

Label Noise in Weak Supervision

Noisy video-level labels lead to poor instance selection in multiple instance learning. Zhong et al. (2019) addressed this with graph cleaning for anomaly detection. Bojanowski et al. (2014) incorporated ordering constraints to mitigate errors.

Scalability to Untrimmed Videos

Processing long videos increases compute demands while maintaining recognition quality. Duchenne et al. (2009) pioneered weakly supervised temporal annotation. Wang et al. (2017) proposed efficient architectures for large-scale training.

Essential Papers

1.

Deep Learning for Computer Vision: A Brief Review

Athanasios Voulodimos, Nikolaos Doulamis, Anastasios Doulamis et al. · 2018 · Computational Intelligence and Neuroscience · 3.2K citations

Over the last years deep learning methods have been shown to outperform previous state-of-the-art machine learning techniques in several fields, with computer vision being one of the most prominent...

2.

A Bottom-Up Clustering Approach to Unsupervised Person Re-Identification

Yutian Lin, Xuanyi Dong, Liang Zheng et al. · 2019 · Proceedings of the AAAI Conference on Artificial Intelligence · 584 citations

Most person re-identification (re-ID) approaches are based on supervised learning, which requires intensive manual annotation for training data. However, it is not only resourceintensive to acquire...

3.

UntrimmedNets for Weakly Supervised Action Recognition and Detection

Limin Wang, Yuanjun Xiong, Dahua Lin et al. · 2017 · 560 citations

Current action recognition methods heavily rely on trimmed videos for model training. However, it is expensive and time-consuming to acquire a large-scale trimmed video dataset. This paper presents...

4.

A Review of Human Activity Recognition Methods

Michalis Vrigkas, Christophoros Nikou, Ioannis A. Kakadiaris · 2015 · Frontiers in Robotics and AI · 551 citations

Recognizing human activities from video sequences or still images is a challenging task due to problems such as background clutter, partial occlusion, changes in scale, viewpoint, lighting, and app...

5.

Random Forests for Real Time 3D Face Analysis

Gabriele Fanelli, Matthias Dantone, Jüergen Gall et al. · 2012 · International Journal of Computer Vision · 547 citations

6.

Graph Convolutional Label Noise Cleaner: Train a Plug-And-Play Action Classifier for Anomaly Detection

Jia-Xing Zhong, Nannan Li, Weijie Kong et al. · 2019 · 530 citations

Video anomaly detection under weak labels is formulated as a typical multiple-instance learning problem in previous works. In this paper, we provide a new perspective, i.e., a supervised learning t...

7.

Vision-based human activity recognition: a survey

Djamila Romaissa Beddiar, Brahim Nini, Mohammad Sabokrou et al. · 2020 · Multimedia Tools and Applications · 458 citations

Abstract Human activity recognition (HAR) systems attempt to automatically identify and analyze human activities using acquired information from various types of sensors. Although several extensive...

Reading Guide

Foundational Papers

Start with Duchenne et al. (2009) for weakly supervised temporal annotation basics, then Prest et al. (2011) for human-object interactions, and Bojanowski et al. (2014) for ordering constraints, as they establish MIL foundations for untrimmed videos.

Recent Advances

Study Wang et al. (2017) UntrimmedNets for scalable architectures, Nguyen et al. (2018) for sparse pooling localization, and Zhong et al. (2019) for noise-robust graph methods.

Core Methods

Multiple instance learning pools frame features to video labels (Wang et al., 2017); attention sparsifies activations (Nguyen et al., 2018); graph convolution cleans noisy labels (Zhong et al., 2019).

How PapersFlow Helps You Research Weakly Supervised Action Recognition

Discover & Search

Research Agent uses searchPapers('weakly supervised action recognition UntrimmedNets') to find Wang et al. (2017), then citationGraph to map 560 citing papers, and findSimilarPapers to uncover Nguyen et al. (2018) for sparse pooling methods.

Analyze & Verify

Analysis Agent applies readPaperContent on Wang et al. (2017) to extract UntrimmedNets architecture details, verifyResponse with CoVe to check MIL claims against Duchenne et al. (2009), and runPythonAnalysis to replot temporal attention curves with matplotlib for localization verification; GRADE scores evidence robustness.

Synthesize & Write

Synthesis Agent detects gaps like label noise post-2018 via contradiction flagging across Zhong et al. (2019) and Nguyen et al. (2018); Writing Agent uses latexEditText for method comparisons, latexSyncCitations to link 10 foundational papers, latexCompile for report PDF, and exportMermaid for MIL pipeline diagrams.

Use Cases

"Reproduce UntrimmedNets attention weights on THUMOS14 dataset"

Research Agent → searchPapers → Analysis Agent → runPythonAnalysis (NumPy/pandas to compute MIL bag probabilities from paper excerpts) → matplotlib plots of temporal activation maps.

"Draft LaTeX review comparing WSAR methods 2017-2020"

Research Agent → citationGraph → Synthesis Agent → gap detection → Writing Agent → latexEditText + latexSyncCitations (Wang 2017, Nguyen 2018) + latexCompile → camera-ready arXiv PDF.

"Find GitHub code for weakly supervised action localization"

Code Discovery workflow: Research Agent → paperExtractUrls (Nguyen 2018) → paperFindGithubRepo → githubRepoInspect → verified implementation of sparse temporal pooling network.

Automated Workflows

Deep Research workflow scans 50+ WSAR papers via searchPapers and citationGraph, producing structured reports ranking methods by UCF101 mAP (e.g., UntrimmedNets). DeepScan applies 7-step CoVe verification to compare Wang et al. (2017) vs. Nguyen et al. (2018) on localization IoU. Theorizer generates hypotheses on combining graph cleaning (Zhong et al., 2019) with pose grammar (Fang et al., 2018) for better HOI actions.

Frequently Asked Questions

What defines Weakly Supervised Action Recognition?

It trains action models using only video-level labels on untrimmed videos, relying on MIL to infer temporal segments (Wang et al., 2017).

What are core methods in WSAR?

UntrimmedNets uses outer-inner MIL pooling (Wang et al., 2017); sparse temporal pooling focuses activation maps (Nguyen et al., 2018); early works used ordering constraints (Bojanowski et al., 2014).

What are key papers?

Foundational: Duchenne et al. (2009, 284 citations), Prest et al. (2011, 229 citations); high-impact: Wang et al. (2017, 560 citations), Nguyen et al. (2018, 413 citations).

What open problems remain?

Improving localization precision under label noise and scaling to multi-label long videos; graph-based cleaning helps but needs pose integration (Zhong et al., 2019).

Research Human Pose and Action Recognition with AI

PapersFlow provides specialized AI tools for Computer Science researchers. Here are the most relevant for this topic:

See how researchers in Computer Science & AI use PapersFlow

Field-specific workflows, example queries, and use cases.

Computer Science & AI Guide

Start Researching Weakly Supervised Action Recognition with AI

Search 474M+ papers, run AI-powered literature reviews, and write with integrated citations — all in one workspace.

See how PapersFlow works for Computer Science researchers