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

推荐订阅源

罗磊的独立博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 三生石上(FineUI控件)
Hugging Face - Blog
Hugging Face - Blog
小众软件
小众软件
量子位
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
IT之家
IT之家
V
V2EX
阮一峰的网络日志
阮一峰的网络日志
爱范儿
爱范儿
人人都是产品经理
人人都是产品经理
博客园 - Franky
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园_首页
V
Visual Studio Blog
Last Week in AI
Last Week in AI
有赞技术团队
有赞技术团队
WordPress大学
WordPress大学
博客园 - 司徒正美
大猫的无限游戏
大猫的无限游戏
博客园 - 【当耐特】
MyScale Blog
MyScale 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 built a movie ranking app using ELO algorithm — here's ...
d m · 2026-06-17 · via DEV Community

d m

The Star Rating Problem

Every movie lover has faced it: you open a ranking app, see a movie you love, and try to give it a rating. 4 stars? 4.5? You end up paralyzed by a deceptively hard question — not "how good is this movie?" but "how good is this movie compared to everything else I've seen?"

That's the core problem I set out to solve when I built Montir, a movie ranking iOS app. Star ratings feel precise but they're actually pretty arbitrary. You might give Inception 5 stars on Monday and realize on Thursday you'd rate The Shining the same — but you definitely don't think they're equal films.

The insight that changed everything: humans are much better at pairwise comparisons than absolute ratings. It's easier to answer "is Parasite better than Interstellar?" than "what exact score out of 10 does Parasite deserve?"

The ELO Solution

ELO is a rating algorithm originally developed for chess — it's what determines player rankings based on wins and losses. The key insight is that a rating should reflect relative standing, not absolute quality.

Here's the beautiful part: when you win against a higher-rated opponent, you gain more points. When you lose to a lower-rated opponent, you lose more. The system is self-correcting over time.

For movies, this translates perfectly:

  • Start every movie at 1000 ELO
  • Show two movies and ask: which one do you prefer right now?
  • Update both ratings based on the outcome
  • Repeat until rankings stabilize

After ~20-30 matchups, a surprisingly accurate ranked list emerges — one that genuinely reflects your taste, not just a global average.

Technical Implementation in Swift

The ELO calculation itself is clean and elegant in Swift:

struct ELOCalculator {
    static let kFactor: Double = 32.0

    static func expectedScore(ratingA: Double, ratingB: Double) -> Double {
        return 1.0 / (1.0 + pow(10, (ratingB - ratingA) / 400.0))
    }

    static func newRatings(winner: Movie, loser: Movie) -> (winnerRating: Double, loserRating: Double) {
        let expectedWin = expectedScore(ratingA: winner.eloRating, ratingB: loser.eloRating)
        let expectedLoss = expectedScore(ratingA: loser.eloRating, ratingB: winner.eloRating)

        let newWinnerRating = winner.eloRating + kFactor * (1.0 - expectedWin)
        let newLoserRating = loser.eloRating + kFactor * (0.0 - expectedLoss)

        return (newWinnerRating, newLoserRating)
    }
}

The kFactor of 32 controls how dramatically ratings shift per match. Higher values = more volatile rankings that respond faster to new data. Lower values = more stable but slower to update.

For data persistence, I used SwiftData (Apple's new Core Data successor), which integrates cleanly with SwiftUI:

@Model
class Movie {
    var title: String
    var year: Int
    var eloRating: Double
    var matchCount: Int
    var posterURL: String?

    init(title: String, year: Int) {
        self.title = title
        self.year = year
        self.eloRating = 1000.0
        self.matchCount = 0
    }
}

Matchup Selection Algorithm

Here's something that isn't obvious: showing random matchups is wasteful. If you have 100 movies, random pairs might show two films with wildly different ratings — the outcome is already obvious and gives you little information.

I implemented an uncertainty-weighted selection approach:

  1. Prefer movies with fewer total matchups (they need more data)
  2. Among those, prefer matchups where ratings are close (more "informative" comparisons)
  3. Introduce occasional random matchups to surface surprises
func selectNextMatchup(from movies: [Movie]) -> (Movie, Movie) {
    // Sort by match count, prioritize less-seen movies
    let sorted = movies.sorted { $0.matchCount < $1.matchCount }
    let candidate = sorted.first ?? movies.randomElement()!

    // Find a good opponent: close in rating, but not too recently seen
    let opponents = movies.filter { $0.id != candidate.id }
        .sorted { abs($0.eloRating - candidate.eloRating) < abs($1.eloRating - candidate.eloRating) }

    // Pick from the top 5 closest, with some randomness
    let poolSize = min(5, opponents.count)
    let opponent = opponents.prefix(poolSize).randomElement()!

    return (candidate, opponent)
}

This made rankings converge roughly 40% faster in testing compared to pure random selection.

What Worked

SwiftUI animations were a joy. The card-swipe interface for choosing between two movies felt natural to build. The declarative syntax meant I could prototype interactions in minutes that would have taken hours in UIKit.

The ELO model just works. Users who tested early builds consistently said "this list actually feels right" — which is harder to achieve than it sounds. The algorithm surfaces genuine preferences even when people haven't consciously thought about their rankings.

TMDB API integration was smooth. Pulling in poster images, genres, and metadata via The Movie Database API made the experience feel polished. async/await in Swift made the networking clean.

What Didn't Work (At First)

Onboarding is hard. A fresh install shows zero movies. Users need to add content before the ELO system can do anything useful. I went through three different onboarding flows before landing on one that felt right: suggest popular films based on the user's stated genres, let them add 10-20 to start, then immediately show the first matchup.

Rating convergence takes longer than users expect. Early feedback was "why does my ranking keep changing?" The fix was adding a visual stability indicator — a small badge that fills as a movie accumulates more matchups — so users understand the system is still learning.

SwiftData had rough edges. The migration tooling was limited during early development. I hit a few cases where schema changes caused crashes that took a while to debug. If you're starting a new project now it's much more stable, but plan for some friction.

Try It

Montir is live on the App Store. If you've ever wanted a ranked list of your movies that actually reflects how you feel — rather than a pile of 4-star ratings — give it a try.

Download Montir on the App Store

The ELO approach turned out to be genuinely better than star ratings for this problem. I'd love to hear if others have used similar pairwise comparison techniques in their apps — drop a comment below.