Vibe peringkat

What 'vibe peringkat' really berarti — LLM-based reranking, two-stage retrieval pipeline, what Google dan Bing actually melakukan, dan cara mengoptimalkan untuk ini.

Pertama kali diterbitkan: 24 Jun 2026 · Terakhir diperbarui: 3 Agu 2026 · Advanced
Bahasa

"Vibe ranking" _(terjemahan)_ “Vibe peringkat” adalah practitioner shorthand — not sebuah official Google atau Bing istilah — untuk LLM-based reranking: menggunakan sebuah model bahasa besar untuk reorder retrieved search candidates oleh holistic, semantic judgment alih-alih keyword overlap atau raw vector similarity. nyata mechanism behind ini adalah two-stage retrieval pipeline (retrieve banyak candidates cheaply, lalu rerank sebuah kecil set dengan sebuah expensive model) dan three reranking paradigms (pointwise, pairwise, listwise). Google's DOJ-disclosed RankEmbed dan pairwise patent, plus Bing's Web IQ dan Google's documented Passage peringkat sistem, confirm LLMs dan passage-tingkat scoring adalah now deep di peringkat — though neither vendor discloses scoring function. SEO takeaway: jelas, authoritative, well-structured, factually grounded prose adalah defensible practice di bawah sebuah LLM reranker, not sebuah guaranteed win.

TL;DR — “Vibe ranking” (terjemahan) “Vibe peringkat” adalah informal practitioner shorthand (oleh analogy dengan “vibe coding” (terjemahan) “vibe coding”) untuk LLM-based reranking — not sebuah official Google atau Bing istilah. nyata mechanism adalah two-stage retrieval pipeline: cheap pertama-stage retrieval (BM25 / bi-encoders) untuk recall, lalu sebuah expensive kedua-stage reranker untuk precision. LLM rerankers come di three flavors — pointwise, pairwise, listwise — dengan pairwise dan listwise outperforming pointwise di research. Google’s DOJ-disclosed RankEmbed (LLM-trained) dan sebuah pairwise patent, plus Bing’s Web IQ passage-tingkat evidence objects, confirm LLMs adalah deep di peringkat — though neither confirms sebuah discrete “LLM reranker” (terjemahan) “LLM reranker” stage oleh itu name. SEO consequence adalah passage-tingkat shift: Anda paragraf competes terhadap competitors’ paragraphs pada holistic quality.

sebuah note pada istilah sebelum kami start

ini artikel menggunakan “vibe ranking” (terjemahan) “vibe peringkat” sebagai editorial shorthand untuk learned reranking berdasarkan broad relevance signals; readers seharusnya not treat ini sebagai sebuah named search-sistem standard. Evidence for this claim Vibe ranking is used in this article as informal editorial shorthand, not as a standardized research or vendor term. Scope: Terminology boundary for this article; the cited research supports retrieve-then-rerank architectures, not the phrase vibe ranking. Confidence: medium · Verified: Reimers and Gurevych: Sentence-BERT Research pada kalimat embeddings dan cross-encoders mendukung broader two-stage retrieval dan reranking architecture. Evidence for this claim Sentence-BERT research describes efficient bi-encoder retrieval and cross-encoder-style pair scoring, supporting a retrieve-then-rerank pattern. Scope: The paper's evaluated models and datasets; production ranking stacks may use different candidates, models, and signals. Confidence: high · Verified: Reimers and Gurevych: Sentence-BERT

Let me menjadi upfront, because I’d rather coin sebuah berguna frame honestly daripada pretend ini adalah official: “vibe ranking” (terjemahan) “vibe peringkat” adalah not sebuah istilah Google, Bing, atau apa pun mesin pencari menggunakan. ini doesn’t appear di mereka docs, patents, atau engineer statements. ini adalah emerging practitioner shorthand, almost certainly borrowed oleh analogy dari vibe coding (coined oleh Andrej Karpathy di February 2025, popular enough untuk become Collins Dictionary’s kata dari Year untuk 2025).

I’m menggunakan ini anyway because ini adalah sebuah baik metaphor untuk sebuah nyata, well-documented mechanism — formal name untuk which adalah LLM-based reranking (juga: neural reranking, passage reranking, pairwise/listwise peringkat). “vibe” (terjemahan) “vibe” captures key difference: sebuah LLM reads sebuah passage holistically, like sebuah human judge, rather daripada computing sebuah similarity score dari surface fitur. hanya don’t quote ini back untuk me sebagai something Google said. ini isn’t.

two-stage retrieval pipeline

ini adalah bagian itu’s telah benar untuk sebuah panjang time, well sebelum LLMs. Retrieval runs di two stages because Anda dapat’t afford untuk melakukan expensive thing untuk everything:

  • Stage 1 — retrieval (recall). sebuah fast, cheap metode — keyword matching dengan BM25, atau sebuah bi-encoder itu turns kueri dan documents ke vectors — pulls back sebuah besar candidate set (top 100–1000) di milliseconds. Cheap, tetapi imprecise.
  • Stage 2 — reranking (precision). sebuah slower, more accurate model re-scores itu kecil candidate atur ke temukan genuinely best handful. ini digunakan untuk menjadi sebuah cross-encoder; now ini dapat menjadi sebuah LLM.

Why bother dengan two stages? Because precise metode doesn’t scale. sebagai Pinecone puts ini, running BERT di atas 40M records pada sebuah GPU akan take “more than 50 hours,” (terjemahan) “more daripada 50 hours,” versus di bawah 100ms dengan pencarian vektor alone. Anda retrieve broadly dengan cheap alat, lalu spend expensive compute hanya pada survivors. dan untuk AI jawaban specifically, ini penting twice di atas: “LLM recall degrades as we put more tokens in the context window.” (terjemahan) “LLM recall degrades sebagai kami put more tokens di context window.” Feeding generator best 5 passages beats dumping 200 mediocre ones ke prompt.

Bi-encoder vs cross-encoder vs LLM, since ini adalah whole spectrum:

  • Bi-encoders embed kueri dan document separately, so document vectors dapat menjadi precomputed. Fast di kueri time, tetapi mereka lose kueri↔document interaction.
  • Cross-encoders run kueri dan document together melalui sebuah transformer. Far more accurate, far slower — Anda dapat’t precompute.
  • LLM rerankers adalah cross-encoder idea taken untuk extreme: full generative understanding, reasoning tentang relevance, quality, dan completeness — di highest cost dan latency dari three.

three reranking paradigms

ini adalah core dari “how LLMs actually rerank,” (terjemahan) “how LLMs actually rerank,” dan ini adalah where academic literature adalah solid. ada three cara untuk tanyakan sebuah LLM untuk peringkat:

  • Pointwise — score setiap passage independently (“how relevant is this passage, 0–1?” (terjemahan) “how relevant adalah ini passage, 0–1?”). sederhana, parallelizable, tetapi LLMs adalah buruk di producing calibrated absolute scores, dan ini adalah paling expensive per unit dari quality.
  • Pairwise — tampilkan model two passages dan tanyakan which adalah better untuk kueri. Run twice dengan order swapped untuk cancel position bias. ini plays untuk sebuah nyata LLM strength: sebagai Pairwise peringkat Prompting (PRP) authors put ini, LLMs memiliki “a sense of pairwise relative comparisons, which is much simpler than requiring calibrated pointwise relevance estimation.” (terjemahan) “sebuah sense dari pairwise relative comparisons, which adalah much simpler daripada requiring calibrated pointwise relevance estimation.”
  • Listwise — hand model whole set dan tanyakan ini untuk output sebuah diperingkatkan permutation di once. ini adalah paling “vibe-like” (terjemahan) “vibe-like” approach: one holistic judgment di atas set. RankGPT melakukan ini dengan sebuah sliding window di atas candidates.

research consensus adalah itu pointwise adalah weak option dan pairwise/listwise win. ZeroEntropy’s benchmarking adalah blunt: “Pointwise LLM reranking is almost never worth it — 10x the cost and lower accuracy than specialized rerankers.” (terjemahan) “Pointwise LLM reranking adalah almost tidak pernah worth ini — 10x cost dan lower accuracy daripada specialized rerankers.” Listwise LLM reranking dapat beat specialized cross-encoders, tetapi di sebuah steep latency/cost premium (mereka angka: sebuah listwise LLM di NDCG@10 0,78 / 420ms / ~9x cost vs sebuah specialized reranker di 0,74 / 12ms).

Two landmark hasil worth knowing:

  • RankGPT (Sun et al., EMNLP 2023, “Is ChatGPT Good at Search?” (terjemahan) “adalah ChatGPT baik di Search?”) showed itu “properly instructed LLMs can deliver competitive, even superior results to state-of-the-art supervised methods” (terjemahan) “properly instructed LLMs dapat deliver competitive, bahkan superior hasil untuk state-dari—art supervised metode” — zero-shot. GPT-4 produced “remarkable results” (terjemahan) “remarkable hasil” pada TREC benchmarks, dan authors distilled itu peringkat ability ke sebuah much smaller model itu beat sebuah 3B supervised baseline.
  • PRP (Qin et al.) showed FLAN-UL2 (20B) dengan pairwise prompting beating InstructGPT (175B) oleh >10% pada TREC-DL2019 — dan menjadi far more robust untuk input order daripada listwise RankGPT, which collapsed dari NDCG@10 65,80 untuk 32,77 when input order adalah reversed.

What Google dan Bing adalah actually doing

Here’s where I separate confirmed dari speculation, because gap penting.

Google — confirmed LLMs adalah di peringkat; “reranker stage” (terjemahan) “reranker stage” unconfirmed.

  • RankEmbed adalah, per DOJ antitrust testimony dari Pandu Nayak (disclosed early 2025, reported via mesin pencari Land), sebuah “primary Google signal, trained with Large Language Models.” (terjemahan) “primary Google signal, trained dengan model bahasa besar.” ini adalah sebuah dual-encoder itu maps kueri dan halaman ke sebuah embedding space dan peringkat oleh distance. Note: ini adalah sebuah LLM-trained retrieval/sinyal peringkat, not sebuah discrete two-stage “reranker” (terjemahan) “reranker” oleh academic definition. (DOJ trial testimony — court-disclosed, not sebuah Google publication.)
  • ** pairwise patent** (US20250124067A1, “Method for Text Ranking with Pairwise Ranking Prompting,” (terjemahan) “metode untuk Text peringkat dengan Pairwise peringkat Prompting,” Google LLC, filed Oct 2024, published Apr 2025) describes exactly pairwise approach above: sebuah LLM compares passage pairs, run twice untuk position bias, aggregated via semua-pairs, sliding window, atau sorting. sebuah patent adalah not sebuah deployed fitur — treat ini sebagai architecture Google memiliki worked pada, not confirmed production perilaku.
  • sebuah passage-tingkat peringkat sistem adalah officially documented — hanya not quote ini artikel digunakan untuk cite. Google’s own guide untuk Search peringkat sistem lists sebuah “Passage ranking system,” (terjemahan) “Passage peringkat sistem,” described there sebagai sebuah AI sistem “we use to identify individual sections or ‘passages’ of a web page to better understand how relevant a page is to a search.” (terjemahan) “kami gunakan untuk identify individual bagian atau ‘passages’ dari sebuah halaman web untuk better memahami how relevant sebuah halaman adalah untuk sebuah search.” itu’s nyata, saat ini sub-document granularity — tetapi Google’s text ties ini untuk umum Search relevance, not untuk Gemini atau AI Overviews oleh name. (I diperiksa AI Optimization Guide directly oleh raw fetch, including sebuah Wayback snapshot dari day ini brief adalah researched — ini berisi no mention dari “Gemini” (terjemahan) “Gemini” atau “passage” (terjemahan) “passage” di semua. sebuah earlier draft dari ini artikel quoted sebuah “Gemini… passage indexing” (terjemahan) “Gemini… passage pengindeksan” line sebagai jika ini adalah pada itu halaman; ini isn’t dan tidak pernah adalah. itu adalah my error, dan I’ve corrected ini here.)

What Google memiliki not published: apa pun deskripsi dari sebuah distinct LLM reranking stage inside AI Overviews — no cross-encoder, no pairwise langkah, no listwise pass confirmed di live pipeline, dan nothing itu names passage peringkat sebagai bagian dari itu pipeline specifically.

Bing — clearest official confirmation dari passage-tingkat, LLM-aware scoring.

Microsoft’s Web IQ (announced June 2026, Knut Risvik) adalah strongest pada-record signal dari apa pun major mesin. -nya model layer mencakup “our best-in-class embedding model, which defines how information is projected into a space where semantic similarity becomes computationally tractable,” (terjemahan) “kami best-di-class embedding model, which defines how informasi adalah projected ke sebuah space where semantic similarity becomes computationally tractable,” alongside separate “models that are optimized for content understanding and ranking, trained not for isolated metrics but for how their outputs are used inside LLM-driven reasoning.” (terjemahan) “models itu adalah dioptimalkan untuk konten understanding dan peringkat, trained not untuk isolated metrics tetapi untuk how mereka outputs adalah digunakan inside LLM-driven reasoning.” itu last phrase adalah tentang sebagai close sebagai anyone memiliki come untuk officially confirming sebuah LLM-aware reranking layer. Web IQ mengembalikan passages dan structured evidence objects, not full documents, pada principle dari “fewer tokens in, better answers out, lower cost per call.” (terjemahan) “fewer tokens di, better jawaban out, lower cost per panggil.”

Bing’s earlier “Evolving role of the index” (terjemahan) “Evolving role dari indeks” post (dapat 2026) frames shift well: “Search indexing was built to help humans decide what to read. Grounding indexing is being built to help AI systems decide what to say.” (terjemahan) “Search pengindeksan adalah dibangun untuk help humans decide what untuk read. Grounding pengindeksan adalah menjadi dibangun untuk help AI sistem decide what untuk say.”

passage-tingkat shift — bagian itu actually perubahan Anda SEO

jika Anda take one operational thing dari ini artikel, take ini: ** unit dari competition adalah moving dari document untuk passage.** Google’s documented passage peringkat sistem dan Bing’s evidence objects both score discrete chunks. Combine itu dengan pairwise reranking, dan Anda individual paragraf adalah menjadi compared head-untuk-head terhadap sebuah competitor’s paragraf pada yang sama sub-topic.

mesin pencari Land framing dari Google patent captures consequence: konten “doesn’t compete in isolation but undergoes relative evaluation against all surviving candidates.” (terjemahan) “doesn’t compete di isolation tetapi undergoes relative evaluation terhadap semua surviving candidates.” sebuah great halaman dengan sebuah weak paragraf pada sebuah sub-topic dapat lose itu sub-topic untuk sebuah weaker halaman dengan sebuah strong paragraf. ini adalah juga why modern agentic loop penting more daripada apa pun single peringkat moment: AI search fans sebuah pertanyaan out ke banyak sub-kueri, retrieves dan reranks untuk setiap, dan runs sebuah critic pass. Anda konten memiliki untuk survive repeatedly, not peringkat #1 once.

Worth menjadi precise tentang: jelas, self-berisi passages adalah sebuah defensible usability dan retrieval practice regardless — mereka’re easier untuk apa pun retriever untuk match dan apa pun reader untuk gunakan. tetapi no source here proves sebuah well-written passage universally wins inside sebuah undisclosed reranker. Google dan Bing confirm architecture operates di passage granularity; neither publishes scoring function. Treat “write good passages” (terjemahan) “write baik passages” sebagai sound practice, not sebuah guaranteed peringkat lever.

ini connects directly untuk rest dari how AI jawaban get dibangun — passage peringkat, chunking, embeddings, pencarian vektor, dan RAG/grounding adalah semua upstream dan downstream dari reranking langkah.

What LLM rerankers favor (dan honest caveat)

Synthesizing PRP research dan practitioner analysis dari pairwise patent, konten itu wins relative comparisons tends untuk share ini traits:

  • Direct intent match — jawaban kueri without tangential padding.
  • Semantic completeness — addresses semua components dari pertanyaan.
  • Factual density dengan jelas provenance — checkable claims, attributable sources.
  • jelas, logically organized writing — structure model dapat ikuti.
  • Authoritative, trustworthy tone — dan genuine subject expertise behind ini.

Luca Tagliaferro’s read pada patent sums up mental shift: peringkat moves dari “absolute, deterministic relevance to relative, model-mediated probabilistic relevance.” (terjemahan) “absolute, deterministic relevance untuk relative, model-mediated probabilistic relevance.”

** caveat I won’t skip:** tidak ada single universal “vibe.” (terjemahan) “vibe.” Research diagnosing LLM rerankers di bawah fixed evidence pools ditemukan mereka exhibit “model-specific, non-uniform behavior that cannot be reduced to a single recognizable optimization strategy.” (terjemahan) “model-spesifik, non-uniform perilaku itu cannot menjadi reduced untuk sebuah single recognizable optimization strategy.” Llama implicitly diversifies; GPT increases redundancy; Qwen sits di antara. mereka’re juga not lexical matchers — BM25 agreement adalah weak (τ dari ~0,19 untuk ~0,41). So “optimize for the AI’s vibe” (terjemahan) “mengoptimalkan untuk AI’s vibe” adalah sebuah oversimplification: Anda mengoptimalkan untuk genuinely jelas, complete, well-sourced passages, because itu’s what holds up di seluruh models — not untuk one model’s quirks.

Add an expert note

Pin an expert quote

New person? Create their unclaimed profile at /admin/experts/ → Pin a quote first.