惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
The GitHub Blog
The GitHub Blog
J
Java Code Geeks
Engineering at Meta
Engineering at Meta
N
Netflix TechBlog - Medium
A
About on SuperTechFans
博客园 - 三生石上(FineUI控件)
罗磊的独立博客
MongoDB | Blog
MongoDB | Blog
B
Blog RSS Feed
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
有赞技术团队
有赞技术团队
T
Tailwind CSS Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Vercel News
Vercel News
腾讯CDC
博客园 - 聂微东
The Cloudflare Blog
F
Fortinet All Blogs
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
Visual Studio Blog
Last Week in AI
Last Week in AI
B
Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I Spent 6 Months Trying to See Time in Videos. Here's Wha...
Sourabh Josh · 2026-04-26 · via DEV Community

Sourabh Joshi

Originally published on Medium.


Let me start with a confession: my first attempt at building a video time prediction model was a disaster.
I'd spent 3 months reading papers, collecting datasets, and training models.
But when I finally deployed it, the results were laughable.

I was trying to use a 3D CNN to extract features from video frames, and then feed those features into an LSTM to predict the time.
It sounded good on paper, but in practice, it was a mess.
The model was overfitting, underfitting, and just generally not working.

I tried tweaking the architecture, adjusting the hyperparameters, and even switching to a different dataset.
But no matter what I did, I just couldn't seem to get it to work.
And then, one day, I stumbled upon a paper about SlowFast networks, and everything changed.

The Before: When Everything Technically Works But Nothing Really Does

My model was technically working, in the sense that it was producing outputs and not crashing.
But in terms of actually predicting time in videos, it was a failure.
Some of the issues I was facing included:

  • Poor feature extraction
  • Inability to handle variable frame rates
  • Overfitting to the training data The real insight here is that I was focusing on the wrong problem. I was so caught up in trying to get the model to work, that I wasn't thinking about whether the model was even the right tool for the job.

The Shift That Changed Everything

The turning point came when I stopped asking: What's the best model for this task?
...and started asking: What's the best way to represent time in a video?
This sounds obvious, but it completely changed my approach.
I started thinking about how humans perceive time, and how I could use that to inform my model design.

SlowFast Networks — What They Actually Do For You

Before, I was using a standard 3D CNN to extract features from video frames.
But with SlowFast networks, I could extract features at multiple scales, and then fuse them together to get a more robust representation of time.
The code for this was surprisingly simple:

import torch
import torch.nn as nn

class SlowFastNetwork(nn.Module):
    def __init__(self):
        super(SlowFastNetwork, self).__init__()
        self.slow_path = nn.Sequential(
            nn.Conv3d(3, 64, kernel_size=3),
            nn.ReLU(),
            nn.MaxPool3d(kernel_size=2)
        )
        self.fast_path = nn.Sequential(
            nn.Conv3d(3, 64, kernel_size=3),
            nn.ReLU(),
            nn.MaxPool3d(kernel_size=2)
        )
    def forward(self, x):
        slow_features = self.slow_path(x)
        fast_features = self.fast_path(x)
        return torch.cat((slow_features, fast_features), dim=1)

Enter fullscreen mode Exit fullscreen mode

I spent 4 hours figuring this out, but it was worth it

Time Prediction — What It Actually Means

Before, I was trying to predict time as a regression problem.
But with SlowFast networks, I could frame it as a classification problem, and get much better results.
The insight here is that time is not a continuous variable, but rather a discrete one.
We can think of time as a series of discrete events, rather than a continuous flow.

The key insight here is that time is not just a matter of clock time, but also of event time.
By representing time as a series of discrete events, we can build models that are more robust and more accurate.

The After: What Actually Changed

The results were night and day.
Before, my model was producing errors of up to 30 seconds.
After, the errors were down to 1-2 seconds.
Some of the key changes included:

  • Improved feature extraction
  • Better handling of variable frame rates
  • Reduced overfitting One thing that still doesn't work perfectly is handling videos with multiple timelines. This is an area where I'm still doing research, and hoping to make some breakthroughs.

Final Thought: It's Not About Time — It's About Understanding

If I'm being honest, I was so focused on predicting time in videos that I forgot about the bigger picture.
Video understanding is not just about time, it's about understanding the events, actions, and objects in a video.
So, if you're also working on video understanding, I'm curious: what's the one thing that you're still struggling to get right?


Follow me on Medium for more AI/ML content!