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

推荐订阅源

爱范儿
爱范儿
WordPress大学
WordPress大学
博客园 - 【当耐特】
The Cloudflare Blog
B
Blog
Last Week in AI
Last Week in AI
小众软件
小众软件
量子位
S
SegmentFault 最新的问题
V
Visual Studio Blog
博客园 - 叶小钗
美团技术团队
阮一峰的网络日志
阮一峰的网络日志
Hugging Face - Blog
Hugging Face - Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
宝玉的分享
宝玉的分享
A
About on SuperTechFans
雷峰网
雷峰网
J
Java Code Geeks
Microsoft Azure Blog
Microsoft Azure Blog
腾讯CDC
MongoDB | Blog
MongoDB | Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Martin Fowler
Martin Fowler

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 GeoGuessr Assistant that reaches 74.8% accuracy
Yacine · 2026-05-14 · via DEV Community

Yacine

Hallo,

Showcase

Github Repo: https://github.com/yacine204/geoGuessr_Assistant

So i recently finished my final year project in computer science (3rd year) and the theme was GeoGuessr Assistant which basically gives candidates coordinates hinting where u are in the game.

The Idea

instead of going full AI i went hybrid and focused on the strongest Human-Like clues (road signs and any type of text).

How It Works

the pipeline consits of 5 stages

  • 1/Road Sign Convention Detection:
    Fine tuned a YOLOv8m model to detect these classes:

    • MUTCD
    • VIENNA
    • AMBIGUOUS
  • 2/Text Extraction

    Used EasyOCR for this step but im still thinking of finetuning it to be able to detect any asian language without having to manually configure the default language.

_easyocr_reader = easyocr.Reader(['en'], gpu=False)
#if i get slavic text per example i have to do this
_easyocr_reader = easyocr.Reader(['ru'], gpu=False)

Enter fullscreen mode Exit fullscreen mode

  • 3/Country filtering Here will be using results of stage 1 and 2. and this stage has 3 stages
    • Country Probability Init:
    • Init country Probability by its distribution found in this repo: https://github.com/Crrrrrrr/geoguessr-statistics
    • Country elimination
    • we have to do some math before elimination and that math will just tell us how sure are we for taking that decision
bias = (total_vienna_confidence - total_mutcd_confidence) / (total_vienna_confidence + total_mutcd_confidence)

if bias>0 then we lean to vienna
elif bias<0 then we lean to mutcd
else mixed/ambiguous we do nothing

and to be safe we set a thresh hold thats dependant on bias_confident:
    if bias_confidence>0.7 -> threshold = 0.2
    elif bias_confidence>0.4 -> threshold = 0.3
    else -> threshold = 0.5

finally:
    if bias>threshold -> vienna
    elif bias<-threshold -> mutcd
    else -> hybrid

Enter fullscreen mode Exit fullscreen mode

  • 4/Nominatim this is just to prepare nodes for the last stage but basically we pass the extracted text and we get the type of entities and their POI's
  • 5/OverPass API this is the final step that gets us the coords, we cluster them by 500 km to reduce error, we can change that if we dont trust the ocr that much.

Would love to continue to work on the project by adding more fine tuned weights that detects vegetation, buildings architecture, cars...etc

ps: Github repo README is well documanted than this xD

If you read all this thank u for your time and attention, would love ur feedback!