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

推荐订阅源

M
MIT News - Artificial intelligence
WordPress大学
WordPress大学
GbyAI
GbyAI
S
SegmentFault 最新的问题
量子位
爱范儿
爱范儿
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
MyScale Blog
MyScale Blog
人人都是产品经理
人人都是产品经理
博客园 - 叶小钗
aimingoo的专栏
aimingoo的专栏
V
Visual Studio Blog
U
Unit 42
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
The Cloudflare Blog
Stack Overflow Blog
Stack Overflow Blog
博客园 - 聂微东
J
Java Code Geeks
The GitHub Blog
The GitHub Blog
Y
Y Combinator Blog
IT之家
IT之家
Martin Fowler
Martin Fowler
宝玉的分享
宝玉的分享
雷峰网
雷峰网

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
GitHub - zzvimercm-git/mirofish-calibration
zzvimercm · 2026-06-23 · via Hacker News: Show HN

Does AI social simulation actually predict reality? — a calibration rig

Multi-agent "social simulation" engines (à la MiroFish — 16k★, OASIS/CAMEL-AI) promise: feed in a document, spawn hundreds of AI personas, and predict how the public will react — before you ship. The category is hot and well-funded.

One problem: nobody publishes the calibration. The demos show one impressive run on one case and say "look, it predicted!". Does the simulation actually beat just asking a single LLM? Nobody measures it.

This is a small, honest rig that measures it. Runs 100% locally on Ollama (sovereign, no cloud).

⚠️ Read the limitations before the findings. This is a rehearsal, not a verdict. See below.

TL;DR (preliminary — n=5 synthetic cases, local qwen2.5:7b)

  • On what people will say (sentiment direction): a single LLM ties a crude multi-agent swarm. Both mediocre on hard cases (~60%).
  • On which objections will surface: a single LLM wins clearly (recall ~98% vs ~70%).
  • On the aggregate "magic" signals (virality magnitude, polarization) — the things simulation is supposed to be good at: the numbers are noise at this scale. Spearman ρ flips sign between runs (+0.71 ↔ −0.71; +0.82 ↔ +0.10). At n=5, ρ≈±0.7 isn't even significant.
  • Adding an agent-interaction round (the core MiroFish thesis) did not help in this crude form.

Conclusion: at small scale the "predictive magic" is indistinguishable from a coin flip. That doesn't disprove MiroFish — it shifts the burden of proof onto the category, and gives you a rig to actually test it instead of trusting a demo.

Headline result (5× averaged, local qwen2.5:7b)

Predictor Sentiment dir. Objection recall Objection prec. Magnitude (rank) Polarization (rank)
mini_swarm (no interaction) 64% 71% 62% +0.10 −0.47
single_llm (one zero-shot call) 52% 84% 71% +0.22 +0.05
dumb (always "mixed") 40% 0% 0% n/a n/a

The single LLM is the bar to beat. A crude swarm doesn't.

⚠️ Limitations (front and center — this is the whole point)

  • n=5, and the cases are synthetic (hand-written, illustrative). This is a methodology rehearsal, not evidence about the real world.
  • The swarm here is a crude proxy, NOT MiroFish. Real MiroFish has many more agents and richer interaction dynamics. This rig tests naive persona-averaging and a toy interaction round — it does not (yet) test real MiroFish.
  • One small local model (qwen2.5:7b). A bigger/different model may change everything.
  • 5-point rank correlations are not statistically meaningful. Treat magnitude/polarization here as noise illustration, not signal.
  • → To get a real answer you need: dozens of real cases with documented ground truth, multiple seeds, and the actual MiroFish engine. That's the open work.

How it works

  1. Cases (cases/*.yaml): a real stimulus + its known reaction (ground truth).
  2. Predictors (interchangeable): mirofish (the real sim — adapter stub to implement), mini_swarm / swarm_x (crude swarm, no/with interaction), single_llm (the baseline to beat), dumb (sanity).
  3. Metrics: sentiment direction, objection recall/precision (semantic LLM-judge), magnitude & polarization rank correlation.
  4. Report: honest comparison, with --runs N to average away run-to-run noise.

Quick start (local, Ollama)

pip install -r requirements.txt          # or: python -m venv .venv && .venv/bin/pip install -r requirements.txt
cp .env.example .env                      # points at local Ollama by default
ollama pull qwen2.5:7b

python run.py --predictors single_llm,dumb            # baselines, fast
python run.py --predictors swarm_x,mini_swarm,single_llm --runs 5   # the real comparison

Open questions / contributing

This rig is only as good as its cases and its sim adapter. PRs very welcome:

  • Add real cases with documented ground truth (cases/case_01_template.yaml). Prefer post-cutoff events (else the LLM remembers instead of predicting).
  • Implement the MiroFish adapter (harness/adapters/mirofish.py) — the one real integration that turns this into a verdict on the actual engine.
  • Run at N≥30 with multiple seeds and report whether the aggregate signals survive the noise floor.

Credit

Built to stress-test the premise behind MiroFish and the OASIS / CAMEL-AI line of work. Huge respect to those projects — this rig exists to help the category prove itself, with method instead of demos.

Why I built this

I'm an infra/DevOps engineer who builds real agentic systems. The agentic-AI space is full of impressive demos and thin on measurement. I'd rather ship a rig that tells the uncomfortable truth than a demo that flatters it. Proof, not claims.

MIT licensed.