SlideShare a Scribd company logo
1 of 45
Download to read offline
MMM, Search!
Daniel Tunkelang
dtunkelang@gmail.com

Presented to Wikimedia Foundation on April 27, 2020
What is search?
Search is a process.
• Searchers
• start with information-seeking goals.

• express and elaborate those goals as queries.

• Search Engines
• translate queries into representations of intent.

• retrieve results relevant to that intent and rank them.

Communication isn’t perfect, so the process is iterative.
Search is many things.
• Known-Item search vs. exploratory search.

• Seeking specific item vs. knowing when you see it.

• Search is a means to an end, not the end itself.

• Getting information, shopping, communication, etc.

• It takes a lot of hard work to make search feel effortless.

• Indexing, query understanding, matching, ranking.
Metrics, Models, Methods
The most important decisions for a search engine are:

• Metrics: what we measure and optimize for.

• Models: how we model the search experience.

• Methods: how we help searchers achieve success.
Metrics
Metrics:
What do we need to know?
• Binary Relevance

• Are searchers finding relevant results?

• Session Success

• How often are search sessions successful?

• Search Efficiency

• How much effort are searchers making?
Binary Relevance
Relevance is a measure of
information conveyed by a
document relative to a query.



Relationship between document
and query, though necessary, is not
sufficient to determine relevance.

William Goffman, 1964
Relevance has shades of gray, but
non-relevance is black and white.
Example: Email
• Can Google decide which of my emails are important?

• ¯_(ツ)_/¯

• Can Google decide which of my emails are spam?

• Definitely!
Measure Binary Relevance!
• Build a (query, document) binary relevance model.

• (we’ll get back to that in a moment)

• Embrace positional bias: measure at top ranks.

• Can use top k results or weighted sample.

• Stratify for meaningful query and user segments.

• Leverage query classification and user data.
Search is a journey.
Searcher
Search isn’t always one-shot.
Search can’t be always one-shot.
Measure Session Success!
• Measure session conversion, not just query conversion.

• Much better proxy for user’s success!

• Compute metrics based on first query of session.

• Distribution of journeys for common intent.

• Segment sessions into tasks? Maybe, but optional. 

• Multi-task sessions uncommon; treat as noise.
Search Efficiency
Searching is not fun.
Having found is fun.
• If search is too hard or takes too long, searchers give up.

• Compare successful and unsuccessful sessions.

• Measure how much time searchers spend in sessions.

• Especially time on search rather than results.

• Measure searcher effort.

• Pagination, reformulation, refinement, etc.
Metrics: Summary
• Binary Relevance

• Are searchers finding relevant results?

• Session Success

• How often are search sessions successful?

• Search Efficiency

• How much effort are searchers making?
Models
Models:
What do we model and how?
• Query Categorization

• What is the primary domain for a query?

• Query Similarity

• Do two queries express similar / identical intent?

• Binary Relevance

• How to estimate relevance of results to queries?
Query Categorization
Search starts with query understanding.
Query understanding starts with categorization.
• Map query to a primary content taxonomy.

• Subject, product type, domain, etc.

• Identify high-level intent, independent of content interest.

• Title, category, brand, site help, etc.

• Categories should be coherent, distinctive, and useful.

• Good categorization requires good categories.
How to Train Your
Query Categorization Model
• Label your most frequent head queries manually.

• Top 1000 queries are probably worth it.

• For torso queries, infer categories from engagement.

• Looking for overwhelmingly dominant category.

• Now train a model using labeled head and torso queries.

• This training data is biased, but manageably so.

• No need to use fancy deep learning / AI. Try fastText.
Query Similarity
Query ambiguity is rare.
Query similarity is common.
• Some queries do not express a clear intent, but most do.

• Most “ambiguous” queries turn out to be broad.

• Bigger opportunity: multiple queries express same intent.

• Or at least the same distribution of intents.

• Recognizing similar / identical queries is huge opportunity.

• Query rewriting, aggregating signals, etc.
How to Model
Query Similarity
• Start with the simple stuff: shallow query canonicalization.

• Character normalization, stemming, word order.

• Look at edit distance, especially for spelling errors.

• Tail queries at edit distance 1 from head queries.

• Compare embeddings of queries and results.

• Especially to keep the other methods honest.
Binary Relevance
Focus on simplest question.
• Worry whether a result is relevant or non-relevant.

• Relevant vs. more relevant is often subjective.

• Assume that query understanding has done its job first.

• Result relevance depends on query understanding.

• Assume that relevance is objective and universal.

• Personalization: a nice-to-have, not a must-have.
How to Train Your
Binary Relevance Model
• Collect human binary relevance judgments. Lots of them. 

• Quantity is more important than quality.

• Pay attention to query distribution and stratify sample. 

• Collect judgements that teach you something.

• Come to terms with presentation and position bias.

• Users mostly interact with top-ranked results.
Models: Summary
• Query Categorization

• Simple model to map query to primary intent.

• Query Similarity

• Recognize queries with same or similar intent.

• Binary Relevance

• Use human judgments to train relevance model.
Methods
Methods:
What are some useful tricks?
• Optimize for Query Performance

• Help searchers make better queries.

• Map Tail Queries to Head Intents

• Searchers aren’t as unique as you think!

• Learn from Successful Sessions

• Help others discovers successful paths.
Optimize for
Query Performance
• Expected searcher success for query.

• Function of query, not of any particular result.

• Can use any measure of searcher success.

• But consider focusing on session success.

• Can incorporate sorting, refinement, or other factors.

• But keep it simple. Query is probably enough.
What is query performance?
Best way to predict query performance?
Historical query performance.
Stuck in the tail? No data?
These methods can help.
Predict query performance.
Then optimize for it.
• Consider every surface where you suggest queries.

• Autocomplete, guides, related searches, etc.

• Offer suggestions with high predicted performance.

• Or at least nudge users wherever possible.

• Use query rewriting to improve query performance.

• Rewrite to similar, high-performing queries.
Pull Your Tail From Your Head
Many tail queries
express head intents.
• Misspelled queries are often misspellings of head queries.

• Common misspellings are uncommon.

• Many queries have a dominant singular or plural form.

• Often, though not always, the same intent.

• Also word order or other grammatical transformations.

• Such removal of low-information / noise words.
Rewrite tail queries!
• Prioritize correcting misspellings of head queries.

• Be more aggressive, skip tokenization, etc.

• Look for head queries equivalent to tail queries.

• Stemming, reordering terms, dropping noise words.

• But check to make sure intent is actually preserved!

• Remember earlier discussion of query similarity.
Learn From Success
Successful searchers
can help everyone else.
• Some queries lead to great performance for everyone.

• e.g., known-item searches by name or title.

• But for some queries, performance is user-dependent.

• Some users are more sophisticated or persistent.

• Successful users discovers successful paths.

• Use trails of successful users to build shortcuts!
Optimize complex journeys.
• Detect the searches for which searchers need help.

• Queries for which successful sessions are long.

• Find the actions that successful searchers take.

• Category / facet refinements, reformulations.

• Promote those actions in the search experience.

• Create shortcuts in the navigational landscape.
Methods: Summary
• Optimize for Query Performance

• Suggest better queries and rewrite others.

• Map Tail Queries to Head Intents

• Rewrite tail queries as similar head queries.

• Learn from Successful Sessions

• Create shortcuts based on successful paths.
Putting It All Together
• Metrics, models, and methods — they all matter.

• Query understanding first, then result relevance.

• Binary result relevance first, then result ranking.

• Session performance, not just query performance.

• Get as much leverage as possible from head queries.
Thank You!
• More Resources

• Query Understanding

https://queryunderstanding.com/

• My Medium (not just about search)

https://medium.com/@dtunkelang

• Contact me directly!

dtunkelang@gmail.com

More Related Content

What's hot

Using Twitter for Science Communication
Using Twitter for Science CommunicationUsing Twitter for Science Communication
Using Twitter for Science CommunicationBailey DeBarmore
 
Docstringを書こう!
Docstringを書こう!Docstringを書こう!
Docstringを書こう!cocodrips
 
鷲崎 メトリクスの基礎とGQM法によるゴール指向の測定 2014年12月18日 日本科学技術連名SQiP研究会 演習コースI ソフトウェア工学の基礎
鷲崎 メトリクスの基礎とGQM法によるゴール指向の測定 2014年12月18日 日本科学技術連名SQiP研究会 演習コースI ソフトウェア工学の基礎鷲崎 メトリクスの基礎とGQM法によるゴール指向の測定 2014年12月18日 日本科学技術連名SQiP研究会 演習コースI ソフトウェア工学の基礎
鷲崎 メトリクスの基礎とGQM法によるゴール指向の測定 2014年12月18日 日本科学技術連名SQiP研究会 演習コースI ソフトウェア工学の基礎Hironori Washizaki
 
リクルートのビッグデータ活用基盤とデータ活用に向けた取組み
リクルートのビッグデータ活用基盤とデータ活用に向けた取組みリクルートのビッグデータ活用基盤とデータ活用に向けた取組み
リクルートのビッグデータ活用基盤とデータ活用に向けた取組みRecruit Technologies
 
BDD Frameworkで回帰テストの自動実行を実現する方法
BDD Frameworkで回帰テストの自動実行を実現する方法BDD Frameworkで回帰テストの自動実行を実現する方法
BDD Frameworkで回帰テストの自動実行を実現する方法潤司 渡部
 
Chapter 7 - People Skills and Team Composition
Chapter 7 - People Skills and Team CompositionChapter 7 - People Skills and Team Composition
Chapter 7 - People Skills and Team CompositionNeeraj Kumar Singh
 
Systematic Literature Reviews and Systematic Mapping Studies
Systematic Literature Reviews and Systematic Mapping StudiesSystematic Literature Reviews and Systematic Mapping Studies
Systematic Literature Reviews and Systematic Mapping Studiesalessio_ferrari
 
モデルベースドテスト入門 -テスト詳細設計を自動化しよう- #stac2013
モデルベースドテスト入門 -テスト詳細設計を自動化しよう- #stac2013モデルベースドテスト入門 -テスト詳細設計を自動化しよう- #stac2013
モデルベースドテスト入門 -テスト詳細設計を自動化しよう- #stac2013Kinji Akemine
 
シナリオテストについて考えてみる
シナリオテストについて考えてみるシナリオテストについて考えてみる
シナリオテストについて考えてみるtef-do
 
Combinatorial testing in Japan
Combinatorial testing in JapanCombinatorial testing in Japan
Combinatorial testing in JapanKeizo Tatsumi
 
パターン・ランゲージ入門講座(Pattern Language Innovators Summit)
パターン・ランゲージ入門講座(Pattern Language Innovators Summit)パターン・ランゲージ入門講座(Pattern Language Innovators Summit)
パターン・ランゲージ入門講座(Pattern Language Innovators Summit)Takashi Iba
 
01 software test engineering (manual testing)
01 software test engineering (manual testing)01 software test engineering (manual testing)
01 software test engineering (manual testing)Siddireddy Balu
 
ソフトウェア品質技術の歴史を振り返る - ソフトウェア品質測定を中心に -
ソフトウェア品質技術の歴史を振り返る - ソフトウェア品質測定を中心に -ソフトウェア品質技術の歴史を振り返る - ソフトウェア品質測定を中心に -
ソフトウェア品質技術の歴史を振り返る - ソフトウェア品質測定を中心に -Keizo Tatsumi
 
Пишем самый быстрый хеш для кэширования данных
Пишем самый быстрый хеш для кэширования данныхПишем самый быстрый хеш для кэширования данных
Пишем самый быстрый хеш для кэширования данныхRoman Elizarov
 
2021 09 豆寄席:(公開用)長く生き残るitエンジニアの”リベラル・アーツ”
2021 09 豆寄席:(公開用)長く生き残るitエンジニアの”リベラル・アーツ”2021 09 豆寄席:(公開用)長く生き残るitエンジニアの”リベラル・アーツ”
2021 09 豆寄席:(公開用)長く生き残るitエンジニアの”リベラル・アーツ”Hideo Terada
 
品質を加速させるために、テスターを増やす前から考えるべきQMファンネルの話(3D版)
品質を加速させるために、テスターを増やす前から考えるべきQMファンネルの話(3D版)品質を加速させるために、テスターを増やす前から考えるべきQMファンネルの話(3D版)
品質を加速させるために、テスターを増やす前から考えるべきQMファンネルの話(3D版)Yasuharu Nishi
 
Building Active Directory Monitoring with Telegraf, InfluxDB, and Grafana
Building Active Directory Monitoring with Telegraf, InfluxDB, and GrafanaBuilding Active Directory Monitoring with Telegraf, InfluxDB, and Grafana
Building Active Directory Monitoring with Telegraf, InfluxDB, and GrafanaBoni Yeamin
 
ちょっと使えるようになる信頼度成長曲線(移行済)
ちょっと使えるようになる信頼度成長曲線(移行済)ちょっと使えるようになる信頼度成長曲線(移行済)
ちょっと使えるようになる信頼度成長曲線(移行済)tomitomi3 tomitomi3
 
アーキテクチャとアジャイルプロジェクトをまともに進めるための両輪について-DevLOVE関西 #DevKan
アーキテクチャとアジャイルプロジェクトをまともに進めるための両輪について-DevLOVE関西 #DevKan アーキテクチャとアジャイルプロジェクトをまともに進めるための両輪について-DevLOVE関西 #DevKan
アーキテクチャとアジャイルプロジェクトをまともに進めるための両輪について-DevLOVE関西 #DevKan Yusuke Suzuki
 

What's hot (20)

Using Twitter for Science Communication
Using Twitter for Science CommunicationUsing Twitter for Science Communication
Using Twitter for Science Communication
 
Docstringを書こう!
Docstringを書こう!Docstringを書こう!
Docstringを書こう!
 
鷲崎 メトリクスの基礎とGQM法によるゴール指向の測定 2014年12月18日 日本科学技術連名SQiP研究会 演習コースI ソフトウェア工学の基礎
鷲崎 メトリクスの基礎とGQM法によるゴール指向の測定 2014年12月18日 日本科学技術連名SQiP研究会 演習コースI ソフトウェア工学の基礎鷲崎 メトリクスの基礎とGQM法によるゴール指向の測定 2014年12月18日 日本科学技術連名SQiP研究会 演習コースI ソフトウェア工学の基礎
鷲崎 メトリクスの基礎とGQM法によるゴール指向の測定 2014年12月18日 日本科学技術連名SQiP研究会 演習コースI ソフトウェア工学の基礎
 
リクルートのビッグデータ活用基盤とデータ活用に向けた取組み
リクルートのビッグデータ活用基盤とデータ活用に向けた取組みリクルートのビッグデータ活用基盤とデータ活用に向けた取組み
リクルートのビッグデータ活用基盤とデータ活用に向けた取組み
 
BDD Frameworkで回帰テストの自動実行を実現する方法
BDD Frameworkで回帰テストの自動実行を実現する方法BDD Frameworkで回帰テストの自動実行を実現する方法
BDD Frameworkで回帰テストの自動実行を実現する方法
 
Chapter 7 - People Skills and Team Composition
Chapter 7 - People Skills and Team CompositionChapter 7 - People Skills and Team Composition
Chapter 7 - People Skills and Team Composition
 
Systematic Literature Reviews and Systematic Mapping Studies
Systematic Literature Reviews and Systematic Mapping StudiesSystematic Literature Reviews and Systematic Mapping Studies
Systematic Literature Reviews and Systematic Mapping Studies
 
モデルベースドテスト入門 -テスト詳細設計を自動化しよう- #stac2013
モデルベースドテスト入門 -テスト詳細設計を自動化しよう- #stac2013モデルベースドテスト入門 -テスト詳細設計を自動化しよう- #stac2013
モデルベースドテスト入門 -テスト詳細設計を自動化しよう- #stac2013
 
シナリオテストについて考えてみる
シナリオテストについて考えてみるシナリオテストについて考えてみる
シナリオテストについて考えてみる
 
Combinatorial testing in Japan
Combinatorial testing in JapanCombinatorial testing in Japan
Combinatorial testing in Japan
 
パターン・ランゲージ入門講座(Pattern Language Innovators Summit)
パターン・ランゲージ入門講座(Pattern Language Innovators Summit)パターン・ランゲージ入門講座(Pattern Language Innovators Summit)
パターン・ランゲージ入門講座(Pattern Language Innovators Summit)
 
01 software test engineering (manual testing)
01 software test engineering (manual testing)01 software test engineering (manual testing)
01 software test engineering (manual testing)
 
ソフトウェア品質技術の歴史を振り返る - ソフトウェア品質測定を中心に -
ソフトウェア品質技術の歴史を振り返る - ソフトウェア品質測定を中心に -ソフトウェア品質技術の歴史を振り返る - ソフトウェア品質測定を中心に -
ソフトウェア品質技術の歴史を振り返る - ソフトウェア品質測定を中心に -
 
Пишем самый быстрый хеш для кэширования данных
Пишем самый быстрый хеш для кэширования данныхПишем самый быстрый хеш для кэширования данных
Пишем самый быстрый хеш для кэширования данных
 
2021 09 豆寄席:(公開用)長く生き残るitエンジニアの”リベラル・アーツ”
2021 09 豆寄席:(公開用)長く生き残るitエンジニアの”リベラル・アーツ”2021 09 豆寄席:(公開用)長く生き残るitエンジニアの”リベラル・アーツ”
2021 09 豆寄席:(公開用)長く生き残るitエンジニアの”リベラル・アーツ”
 
品質を加速させるために、テスターを増やす前から考えるべきQMファンネルの話(3D版)
品質を加速させるために、テスターを増やす前から考えるべきQMファンネルの話(3D版)品質を加速させるために、テスターを増やす前から考えるべきQMファンネルの話(3D版)
品質を加速させるために、テスターを増やす前から考えるべきQMファンネルの話(3D版)
 
Building Active Directory Monitoring with Telegraf, InfluxDB, and Grafana
Building Active Directory Monitoring with Telegraf, InfluxDB, and GrafanaBuilding Active Directory Monitoring with Telegraf, InfluxDB, and Grafana
Building Active Directory Monitoring with Telegraf, InfluxDB, and Grafana
 
ちょっと使えるようになる信頼度成長曲線(移行済)
ちょっと使えるようになる信頼度成長曲線(移行済)ちょっと使えるようになる信頼度成長曲線(移行済)
ちょっと使えるようになる信頼度成長曲線(移行済)
 
アーキテクチャとアジャイルプロジェクトをまともに進めるための両輪について-DevLOVE関西 #DevKan
アーキテクチャとアジャイルプロジェクトをまともに進めるための両輪について-DevLOVE関西 #DevKan アーキテクチャとアジャイルプロジェクトをまともに進めるための両輪について-DevLOVE関西 #DevKan
アーキテクチャとアジャイルプロジェクトをまともに進めるための両輪について-DevLOVE関西 #DevKan
 
Stlc ppt
Stlc pptStlc ppt
Stlc ppt
 

Similar to MMM, Search!

Statistics for MBA.pptx
Statistics for MBA.pptxStatistics for MBA.pptx
Statistics for MBA.pptxPradeep513562
 
Keyword research - Digital Marketing - SEO
Keyword research - Digital Marketing - SEOKeyword research - Digital Marketing - SEO
Keyword research - Digital Marketing - SEONeeraj Reddy
 
Business research Questionnaire Design
Business research Questionnaire DesignBusiness research Questionnaire Design
Business research Questionnaire DesignNishant Pahad
 
Using Surveys to Improve Your Library: Part 1 (Sept. 2018)
Using Surveys to Improve Your Library: Part 1 (Sept. 2018)Using Surveys to Improve Your Library: Part 1 (Sept. 2018)
Using Surveys to Improve Your Library: Part 1 (Sept. 2018)ALATechSource
 
CBI Workshop -.pptx
CBI Workshop -.pptxCBI Workshop -.pptx
CBI Workshop -.pptxAmira Samy
 
Questionnaire design for beginners (Bart Rienties)
Questionnaire design for beginners (Bart Rienties)Questionnaire design for beginners (Bart Rienties)
Questionnaire design for beginners (Bart Rienties)Bart Rienties
 
Effective interviewing skills
Effective interviewing skillsEffective interviewing skills
Effective interviewing skillsJamshaid Iqbal
 
business research method chp 7]
business research method  chp 7]business research method  chp 7]
business research method chp 7]fizza tanvir
 
Hci evaluationa frame work lec 14
Hci evaluationa frame work lec 14Hci evaluationa frame work lec 14
Hci evaluationa frame work lec 14Anwal Mirza
 
Guidelines for search features development a comparison of general users and ...
Guidelines for search features development a comparison of general users and ...Guidelines for search features development a comparison of general users and ...
Guidelines for search features development a comparison of general users and ...Ferli Castillo
 
Behavioural Interviewing Skills, 2012-2013
Behavioural Interviewing Skills, 2012-2013Behavioural Interviewing Skills, 2012-2013
Behavioural Interviewing Skills, 2012-2013ankiit aggarwal
 
Simple User Research Methods: the First Step to Improving Your Website
Simple User Research Methods: the First Step to Improving Your WebsiteSimple User Research Methods: the First Step to Improving Your Website
Simple User Research Methods: the First Step to Improving Your WebsiteRebecca Blakiston
 
Research method - How to interview?
Research method - How to interview?Research method - How to interview?
Research method - How to interview?Hafizah Hajimia
 
Getting it Right with Keyword Research - Stukent Expert Session
Getting it Right with Keyword Research - Stukent Expert SessionGetting it Right with Keyword Research - Stukent Expert Session
Getting it Right with Keyword Research - Stukent Expert SessionStukent Inc.
 
Training Program Evaluation
Training Program EvaluationTraining Program Evaluation
Training Program EvaluationLaura Pasquini
 

Similar to MMM, Search! (20)

Search Analytics - Comperio
Search Analytics - ComperioSearch Analytics - Comperio
Search Analytics - Comperio
 
Statistics for MBA.pptx
Statistics for MBA.pptxStatistics for MBA.pptx
Statistics for MBA.pptx
 
Keyword research - Digital Marketing - SEO
Keyword research - Digital Marketing - SEOKeyword research - Digital Marketing - SEO
Keyword research - Digital Marketing - SEO
 
Business research Questionnaire Design
Business research Questionnaire DesignBusiness research Questionnaire Design
Business research Questionnaire Design
 
Using Surveys to Improve Your Library: Part 1 (Sept. 2018)
Using Surveys to Improve Your Library: Part 1 (Sept. 2018)Using Surveys to Improve Your Library: Part 1 (Sept. 2018)
Using Surveys to Improve Your Library: Part 1 (Sept. 2018)
 
CBI Workshop -.pptx
CBI Workshop -.pptxCBI Workshop -.pptx
CBI Workshop -.pptx
 
Questionnaire design for beginners (Bart Rienties)
Questionnaire design for beginners (Bart Rienties)Questionnaire design for beginners (Bart Rienties)
Questionnaire design for beginners (Bart Rienties)
 
Effective interviewing skills
Effective interviewing skillsEffective interviewing skills
Effective interviewing skills
 
business research method chp 7]
business research method  chp 7]business research method  chp 7]
business research method chp 7]
 
HCI_Lecture04.pptx
HCI_Lecture04.pptxHCI_Lecture04.pptx
HCI_Lecture04.pptx
 
Requirements elicitation
Requirements elicitationRequirements elicitation
Requirements elicitation
 
Hci evaluationa frame work lec 14
Hci evaluationa frame work lec 14Hci evaluationa frame work lec 14
Hci evaluationa frame work lec 14
 
Guidelines for search features development a comparison of general users and ...
Guidelines for search features development a comparison of general users and ...Guidelines for search features development a comparison of general users and ...
Guidelines for search features development a comparison of general users and ...
 
Behavioural Interviewing Skills, 2012-2013
Behavioural Interviewing Skills, 2012-2013Behavioural Interviewing Skills, 2012-2013
Behavioural Interviewing Skills, 2012-2013
 
Simple User Research Methods: the First Step to Improving Your Website
Simple User Research Methods: the First Step to Improving Your WebsiteSimple User Research Methods: the First Step to Improving Your Website
Simple User Research Methods: the First Step to Improving Your Website
 
Unit 2: Research.
Unit 2: Research.Unit 2: Research.
Unit 2: Research.
 
Research method - How to interview?
Research method - How to interview?Research method - How to interview?
Research method - How to interview?
 
Getting it Right with Keyword Research - Stukent Expert Session
Getting it Right with Keyword Research - Stukent Expert SessionGetting it Right with Keyword Research - Stukent Expert Session
Getting it Right with Keyword Research - Stukent Expert Session
 
Training Program Evaluation
Training Program EvaluationTraining Program Evaluation
Training Program Evaluation
 
Free sample 25% Professional in Business Analysis PMI-PBA
Free sample 25%  Professional in Business Analysis PMI-PBAFree sample 25%  Professional in Business Analysis PMI-PBA
Free sample 25% Professional in Business Analysis PMI-PBA
 

More from Daniel Tunkelang

Query Understanding and Ecommerce
Query Understanding and EcommerceQuery Understanding and Ecommerce
Query Understanding and EcommerceDaniel Tunkelang
 
Semantic Equivalence of e-Commerce Queries
Semantic Equivalence of e-Commerce QueriesSemantic Equivalence of e-Commerce Queries
Semantic Equivalence of e-Commerce QueriesDaniel Tunkelang
 
Helping Searchers Satisfice through Query Understanding
Helping Searchers Satisfice through Query UnderstandingHelping Searchers Satisfice through Query Understanding
Helping Searchers Satisfice through Query UnderstandingDaniel Tunkelang
 
Query Understanding: A Manifesto
Query Understanding: A ManifestoQuery Understanding: A Manifesto
Query Understanding: A ManifestoDaniel Tunkelang
 
Where should you put your data scientists?
Where should you put your data scientists?Where should you put your data scientists?
Where should you put your data scientists?Daniel Tunkelang
 
Data Science: A Mindset for Productivity
Data Science: A Mindset for ProductivityData Science: A Mindset for Productivity
Data Science: A Mindset for ProductivityDaniel Tunkelang
 
My Three Ex’s: A Data Science Approach for Applied Machine Learning
My Three Ex’s: A Data Science Approach for Applied Machine LearningMy Three Ex’s: A Data Science Approach for Applied Machine Learning
My Three Ex’s: A Data Science Approach for Applied Machine LearningDaniel Tunkelang
 
Web science - How is it different?
Web science - How is it different?Web science - How is it different?
Web science - How is it different?Daniel Tunkelang
 
Better Search Through Query Understanding
Better Search Through Query UnderstandingBetter Search Through Query Understanding
Better Search Through Query UnderstandingDaniel Tunkelang
 
Social Search in a Professional Context
Social Search in a Professional ContextSocial Search in a Professional Context
Social Search in a Professional ContextDaniel Tunkelang
 
Find and be Found: Information Retrieval at LinkedIn
Find and be Found: Information Retrieval at LinkedInFind and be Found: Information Retrieval at LinkedIn
Find and be Found: Information Retrieval at LinkedInDaniel Tunkelang
 
Search as Communication: Lessons from a Personal Journey
Search as Communication: Lessons from a Personal JourneySearch as Communication: Lessons from a Personal Journey
Search as Communication: Lessons from a Personal JourneyDaniel Tunkelang
 
Enterprise Search: How do we get there from here?
Enterprise Search: How do we get there from here?Enterprise Search: How do we get there from here?
Enterprise Search: How do we get there from here?Daniel Tunkelang
 
Big Data, We Have a Communication Problem
Big Data, We Have a Communication Problem Big Data, We Have a Communication Problem
Big Data, We Have a Communication Problem Daniel Tunkelang
 
How to Interview a Data Scientist
How to Interview a Data ScientistHow to Interview a Data Scientist
How to Interview a Data ScientistDaniel Tunkelang
 
Information, Attention, and Trust: A Hierarchy of Needs
Information, Attention, and Trust: A Hierarchy of NeedsInformation, Attention, and Trust: A Hierarchy of Needs
Information, Attention, and Trust: A Hierarchy of NeedsDaniel Tunkelang
 
Data By The People, For The People
Data By The People, For The PeopleData By The People, For The People
Data By The People, For The PeopleDaniel Tunkelang
 
Content, Connections, and Context
Content, Connections, and ContextContent, Connections, and Context
Content, Connections, and ContextDaniel Tunkelang
 
Scale, Structure, and Semantics
Scale, Structure, and SemanticsScale, Structure, and Semantics
Scale, Structure, and SemanticsDaniel Tunkelang
 

More from Daniel Tunkelang (20)

Query Understanding and Ecommerce
Query Understanding and EcommerceQuery Understanding and Ecommerce
Query Understanding and Ecommerce
 
Semantic Equivalence of e-Commerce Queries
Semantic Equivalence of e-Commerce QueriesSemantic Equivalence of e-Commerce Queries
Semantic Equivalence of e-Commerce Queries
 
Helping Searchers Satisfice through Query Understanding
Helping Searchers Satisfice through Query UnderstandingHelping Searchers Satisfice through Query Understanding
Helping Searchers Satisfice through Query Understanding
 
Enterprise Intelligence
Enterprise IntelligenceEnterprise Intelligence
Enterprise Intelligence
 
Query Understanding: A Manifesto
Query Understanding: A ManifestoQuery Understanding: A Manifesto
Query Understanding: A Manifesto
 
Where should you put your data scientists?
Where should you put your data scientists?Where should you put your data scientists?
Where should you put your data scientists?
 
Data Science: A Mindset for Productivity
Data Science: A Mindset for ProductivityData Science: A Mindset for Productivity
Data Science: A Mindset for Productivity
 
My Three Ex’s: A Data Science Approach for Applied Machine Learning
My Three Ex’s: A Data Science Approach for Applied Machine LearningMy Three Ex’s: A Data Science Approach for Applied Machine Learning
My Three Ex’s: A Data Science Approach for Applied Machine Learning
 
Web science - How is it different?
Web science - How is it different?Web science - How is it different?
Web science - How is it different?
 
Better Search Through Query Understanding
Better Search Through Query UnderstandingBetter Search Through Query Understanding
Better Search Through Query Understanding
 
Social Search in a Professional Context
Social Search in a Professional ContextSocial Search in a Professional Context
Social Search in a Professional Context
 
Find and be Found: Information Retrieval at LinkedIn
Find and be Found: Information Retrieval at LinkedInFind and be Found: Information Retrieval at LinkedIn
Find and be Found: Information Retrieval at LinkedIn
 
Search as Communication: Lessons from a Personal Journey
Search as Communication: Lessons from a Personal JourneySearch as Communication: Lessons from a Personal Journey
Search as Communication: Lessons from a Personal Journey
 
Enterprise Search: How do we get there from here?
Enterprise Search: How do we get there from here?Enterprise Search: How do we get there from here?
Enterprise Search: How do we get there from here?
 
Big Data, We Have a Communication Problem
Big Data, We Have a Communication Problem Big Data, We Have a Communication Problem
Big Data, We Have a Communication Problem
 
How to Interview a Data Scientist
How to Interview a Data ScientistHow to Interview a Data Scientist
How to Interview a Data Scientist
 
Information, Attention, and Trust: A Hierarchy of Needs
Information, Attention, and Trust: A Hierarchy of NeedsInformation, Attention, and Trust: A Hierarchy of Needs
Information, Attention, and Trust: A Hierarchy of Needs
 
Data By The People, For The People
Data By The People, For The PeopleData By The People, For The People
Data By The People, For The People
 
Content, Connections, and Context
Content, Connections, and ContextContent, Connections, and Context
Content, Connections, and Context
 
Scale, Structure, and Semantics
Scale, Structure, and SemanticsScale, Structure, and Semantics
Scale, Structure, and Semantics
 

Recently uploaded

Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsArshad QA
 
Announcing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK SoftwareAnnouncing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK SoftwareJim McKeeth
 
8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech studentsHimanshiGarg82
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfonteinmasabamasaba
 
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park %in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park masabamasaba
 
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...masabamasaba
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisamasabamasaba
 
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️Delhi Call girls
 
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital TransformationWSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital TransformationWSO2
 
WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2
 
The title is not connected to what is inside
The title is not connected to what is insideThe title is not connected to what is inside
The title is not connected to what is insideshinachiaurasa2
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...masabamasaba
 
%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in sowetomasabamasaba
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Steffen Staab
 
Introducing Microsoft’s new Enterprise Work Management (EWM) Solution
Introducing Microsoft’s new Enterprise Work Management (EWM) SolutionIntroducing Microsoft’s new Enterprise Work Management (EWM) Solution
Introducing Microsoft’s new Enterprise Work Management (EWM) SolutionOnePlan Solutions
 
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...masabamasaba
 
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrainmasabamasaba
 
Harnessing ChatGPT - Elevating Productivity in Today's Agile Environment
Harnessing ChatGPT  - Elevating Productivity in Today's Agile EnvironmentHarnessing ChatGPT  - Elevating Productivity in Today's Agile Environment
Harnessing ChatGPT - Elevating Productivity in Today's Agile EnvironmentVictorSzoltysek
 

Recently uploaded (20)

Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview Questions
 
Announcing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK SoftwareAnnouncing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK Software
 
8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
 
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park %in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
 
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
 
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital TransformationWSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
 
WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?
 
The title is not connected to what is inside
The title is not connected to what is insideThe title is not connected to what is inside
The title is not connected to what is inside
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
 
%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
 
Introducing Microsoft’s new Enterprise Work Management (EWM) Solution
Introducing Microsoft’s new Enterprise Work Management (EWM) SolutionIntroducing Microsoft’s new Enterprise Work Management (EWM) Solution
Introducing Microsoft’s new Enterprise Work Management (EWM) Solution
 
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
 
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
 
Harnessing ChatGPT - Elevating Productivity in Today's Agile Environment
Harnessing ChatGPT  - Elevating Productivity in Today's Agile EnvironmentHarnessing ChatGPT  - Elevating Productivity in Today's Agile Environment
Harnessing ChatGPT - Elevating Productivity in Today's Agile Environment
 

MMM, Search!

  • 1. MMM, Search! Daniel Tunkelang dtunkelang@gmail.com Presented to Wikimedia Foundation on April 27, 2020
  • 3. Search is a process. • Searchers • start with information-seeking goals. • express and elaborate those goals as queries. • Search Engines • translate queries into representations of intent. • retrieve results relevant to that intent and rank them. Communication isn’t perfect, so the process is iterative.
  • 4. Search is many things. • Known-Item search vs. exploratory search. • Seeking specific item vs. knowing when you see it. • Search is a means to an end, not the end itself. • Getting information, shopping, communication, etc. • It takes a lot of hard work to make search feel effortless. • Indexing, query understanding, matching, ranking.
  • 5. Metrics, Models, Methods The most important decisions for a search engine are: • Metrics: what we measure and optimize for. • Models: how we model the search experience. • Methods: how we help searchers achieve success.
  • 7. Metrics: What do we need to know? • Binary Relevance • Are searchers finding relevant results? • Session Success • How often are search sessions successful? • Search Efficiency • How much effort are searchers making?
  • 8. Binary Relevance Relevance is a measure of information conveyed by a document relative to a query.
 
 Relationship between document and query, though necessary, is not sufficient to determine relevance. William Goffman, 1964
  • 9. Relevance has shades of gray, but non-relevance is black and white.
  • 10. Example: Email • Can Google decide which of my emails are important? • ¯_(ツ)_/¯ • Can Google decide which of my emails are spam? • Definitely!
  • 11. Measure Binary Relevance! • Build a (query, document) binary relevance model. • (we’ll get back to that in a moment) • Embrace positional bias: measure at top ranks. • Can use top k results or weighted sample. • Stratify for meaningful query and user segments. • Leverage query classification and user data.
  • 12. Search is a journey. Searcher
  • 13. Search isn’t always one-shot. Search can’t be always one-shot.
  • 14. Measure Session Success! • Measure session conversion, not just query conversion. • Much better proxy for user’s success! • Compute metrics based on first query of session. • Distribution of journeys for common intent. • Segment sessions into tasks? Maybe, but optional. • Multi-task sessions uncommon; treat as noise.
  • 16. Searching is not fun. Having found is fun. • If search is too hard or takes too long, searchers give up. • Compare successful and unsuccessful sessions. • Measure how much time searchers spend in sessions. • Especially time on search rather than results. • Measure searcher effort. • Pagination, reformulation, refinement, etc.
  • 17. Metrics: Summary • Binary Relevance • Are searchers finding relevant results? • Session Success • How often are search sessions successful? • Search Efficiency • How much effort are searchers making?
  • 19. Models: What do we model and how? • Query Categorization • What is the primary domain for a query? • Query Similarity • Do two queries express similar / identical intent? • Binary Relevance • How to estimate relevance of results to queries?
  • 21. Search starts with query understanding. Query understanding starts with categorization. • Map query to a primary content taxonomy. • Subject, product type, domain, etc. • Identify high-level intent, independent of content interest. • Title, category, brand, site help, etc. • Categories should be coherent, distinctive, and useful. • Good categorization requires good categories.
  • 22. How to Train Your Query Categorization Model • Label your most frequent head queries manually. • Top 1000 queries are probably worth it. • For torso queries, infer categories from engagement. • Looking for overwhelmingly dominant category. • Now train a model using labeled head and torso queries. • This training data is biased, but manageably so. • No need to use fancy deep learning / AI. Try fastText.
  • 24. Query ambiguity is rare. Query similarity is common. • Some queries do not express a clear intent, but most do. • Most “ambiguous” queries turn out to be broad. • Bigger opportunity: multiple queries express same intent. • Or at least the same distribution of intents. • Recognizing similar / identical queries is huge opportunity. • Query rewriting, aggregating signals, etc.
  • 25. How to Model Query Similarity • Start with the simple stuff: shallow query canonicalization. • Character normalization, stemming, word order. • Look at edit distance, especially for spelling errors. • Tail queries at edit distance 1 from head queries. • Compare embeddings of queries and results. • Especially to keep the other methods honest.
  • 27. Focus on simplest question. • Worry whether a result is relevant or non-relevant. • Relevant vs. more relevant is often subjective. • Assume that query understanding has done its job first. • Result relevance depends on query understanding. • Assume that relevance is objective and universal. • Personalization: a nice-to-have, not a must-have.
  • 28. How to Train Your Binary Relevance Model • Collect human binary relevance judgments. Lots of them. • Quantity is more important than quality. • Pay attention to query distribution and stratify sample. • Collect judgements that teach you something. • Come to terms with presentation and position bias. • Users mostly interact with top-ranked results.
  • 29. Models: Summary • Query Categorization • Simple model to map query to primary intent. • Query Similarity • Recognize queries with same or similar intent. • Binary Relevance • Use human judgments to train relevance model.
  • 31. Methods: What are some useful tricks? • Optimize for Query Performance • Help searchers make better queries. • Map Tail Queries to Head Intents • Searchers aren’t as unique as you think! • Learn from Successful Sessions • Help others discovers successful paths.
  • 33. • Expected searcher success for query. • Function of query, not of any particular result. • Can use any measure of searcher success. • But consider focusing on session success. • Can incorporate sorting, refinement, or other factors. • But keep it simple. Query is probably enough. What is query performance?
  • 34. Best way to predict query performance? Historical query performance.
  • 35. Stuck in the tail? No data? These methods can help.
  • 36. Predict query performance. Then optimize for it. • Consider every surface where you suggest queries. • Autocomplete, guides, related searches, etc. • Offer suggestions with high predicted performance. • Or at least nudge users wherever possible. • Use query rewriting to improve query performance. • Rewrite to similar, high-performing queries.
  • 37. Pull Your Tail From Your Head
  • 38. Many tail queries express head intents. • Misspelled queries are often misspellings of head queries. • Common misspellings are uncommon. • Many queries have a dominant singular or plural form. • Often, though not always, the same intent. • Also word order or other grammatical transformations. • Such removal of low-information / noise words.
  • 39. Rewrite tail queries! • Prioritize correcting misspellings of head queries. • Be more aggressive, skip tokenization, etc. • Look for head queries equivalent to tail queries. • Stemming, reordering terms, dropping noise words. • But check to make sure intent is actually preserved! • Remember earlier discussion of query similarity.
  • 41. Successful searchers can help everyone else. • Some queries lead to great performance for everyone. • e.g., known-item searches by name or title. • But for some queries, performance is user-dependent. • Some users are more sophisticated or persistent. • Successful users discovers successful paths. • Use trails of successful users to build shortcuts!
  • 42. Optimize complex journeys. • Detect the searches for which searchers need help. • Queries for which successful sessions are long. • Find the actions that successful searchers take. • Category / facet refinements, reformulations. • Promote those actions in the search experience. • Create shortcuts in the navigational landscape.
  • 43. Methods: Summary • Optimize for Query Performance • Suggest better queries and rewrite others. • Map Tail Queries to Head Intents • Rewrite tail queries as similar head queries. • Learn from Successful Sessions • Create shortcuts based on successful paths.
  • 44. Putting It All Together • Metrics, models, and methods — they all matter. • Query understanding first, then result relevance. • Binary result relevance first, then result ranking. • Session performance, not just query performance. • Get as much leverage as possible from head queries.
  • 45. Thank You! • More Resources • Query Understanding
 https://queryunderstanding.com/ • My Medium (not just about search)
 https://medium.com/@dtunkelang • Contact me directly!
 dtunkelang@gmail.com