SlideShare a Scribd company logo
1 of 55
@fighto
BREAKING DOWN NLP
FOR SEO
@fighto
Paul Shapiro
Senior Partner, Head of SEO
@ Catalyst, a GroupM Agency
@fighto
Assumptions & Prerequisites
• Familiarity with Python
• Familiarity with common data science libraries such as pandas and
NumPy
• Familiarity with Jupyter Notebooks (optional)
• But no prior knowledge of NLP
@fighto
Libraries Used in Examples
@fighto
KNIME as an Alternative
https://www.knime.com
@fighto
What is Natural Language
Processing (NLP)?
@fighto
“NLP is a way for computers to analyze, understand, and derive
meaning from human language in a smart and useful way. By
utilizing NLP, developers can organize and structure knowledge to
perform tasks such as automatic summarization, translation, named
entity recognition, relationship extraction, sentiment analysis, speech
recognition, and topic segmentation.”
https://blog.algorithmia.com/introduction-natural-language-processing-nlp/
@fighto
NLP
Old New
Linguistical Heuristics
Statistics
Machine Learning
@fighto
Parse Semi/Unstructured Text Data
https://github.com/niderhoff/nlp-datasets
Input:
@fighto
Example Data Sources
• (Digital) Books
• CSVs, Excel, JSON, XML, etc.
• Word Docs/PDFs
• Web Pages (most relevant to SEO)
@fighto
@fighto
Text Pre-Processing
• Tokenization
• Text must be broken into units aka tokens
• (Usually individual words)
@fighto
Text Pre-Processing
We need to parse, clean, and prepare text data for both
analysis and conversion into a machine interpretable
formats.
@fighto
Tokenize Words
@fighto
Text Pre-Processing
• Noise and Junk Removal/Cleanup
• Punctuation and Special Characters
• Stop Words
• Common Abbreviations
• Common Character Cases
• Etc.
@fighto
Lowercase + Remove Punctuation
@fighto
Tokenize & Remove Stop Words
@fighto
Expand Common Abbreviations
@fighto
Text Pre-Processing
• Normalization and Standardization
• Stemming
• Lemmatization
@fighto
Why Normalization, Text Analytics Ex
• Speeds up machine learning analysis
• Disambiguation
• Say there are 500 jokes in our corpus that mention “Donald Trump”
• 25 of those jokes include the word “economy, 15 include the word
“economic” and 10 mention “world economies”.
• All of these jokes have to do with both “economics” and “Donald Trump” but
would turn up as 3 distinct co-occurences.
@fighto
Why Stemming and Pitfalls
• More basic method of reducing different forms of the same word to
a common base
• Stemming chops off the end of the word to accomplish this
• Faster method
• Results in terms that are not real words:
@fighto
Stemming
@fighto
Why Lemmatization and Pitfalls
• More sophisticated method of reducing different forms of the same
word to a common base
• Lemmatizations leverages vocabulary and grammar to infer the root
of a word
• Requires Parts of Speech tagging
• Slower but more accurate method
@fighto
Lemmatization
@fighto
Information Extraction & Grouping
• Getting more context
• N-Grams
• Parts of Speech Tagging
• Chunking/Chinking
• Named Entity Recognition
• Word Embeddings
@fighto
N-Grams
@fighto
Parts of Speech Tagging
@fighto
@fighto
Named Entity Recognition
@fighto
Word Embeddings: word2vec, GloVe
@fighto
Word Embeddings: word2vec, GloVe
@fighto
Statistical Feature Creation
• Leverage personal heuristics to create customized
numeric representations that you think could be
used by a machine learning model to make
predictions
@fighto
Example: Joke Lines & Length
@fighto
Example: Boolean Profanity
@fighto
Example: Number of Profane Words
@fighto
Feature Normalization
• Box-Cox Power Transformations
• “A Box Cox transformation is a way to transform non-
normal dependent variables into a normal
shape. Normality is an important assumption for many
statistical techniques; if your data isn’t normal, applying
a Box-Cox means that you are able to run a broader
number of tests.”
https://www.statisticshowto.datasciencecentral.com/box-cox-transformation/
@fighto
Box-Cox Power Transformation
@fighto
Check Distribution with Histogram
@fighto
Check Distribution with Histogram
@fighto
Box-Cox Transformation & Apply
@fighto
Vectorization
• Count Vectorizer
• N-Gram Vectorizer
• TF-IDF Vectorizer
@fighto
Count Vectorizer – Cleaning Function
@fighto
Count Vectorizer
@fighto
N-Gram Vectorizer
@fighto
Let’s Talk About TF-IDF for a Moment
• Count Vectorizer looked at how many times a term or n-gram
appeared in a joke and represents as positive integer
• TF-IDF would create a score that considers how many time a term
appears in a joke as well as how many times it appears in the entire
corpus of jokes.
• Rarer words are deemed to more important because they can be used
distinguish one joke from another.
• Higher TF-IDF value = more uncommon
• Lower TF-IDF value = less common
@fighto
TF-IDF Vectorizer
@fighto
Decision Trees
Will
[Sports
Team]
win?
Players
statistics
are
favorable?
Is the team
their
playing
historically
better?
Yes No?
Yes
No
@fighto
Random Forest
Will [Sports
Team] win?
Players
statistics are
favorable?
Is the team
their playing
historically
better?
Yes No?
Yes
No
Will [Sports
Team] win?
Players
statistics are
favorable?
Is the team
their playing
historically
better?
Yes No?
Yes
No
@fighto
Basic Machine Learning
@fighto
Basic Machine Learning
@fighto
Basic Machine Learning
@fighto
Having Done This Better
• Reduce overfitting
• Standardize features (mixing sparse and non-sparse data)
• Word embeddings for more context
• More sophisticated models
@fighto
More Applications for SEO
• Creating performant content (joke example extrapolated)
• Predicting natural link earning potential
• Natural language generation, writing bits of content
• Semantic content optimization
• Site architecture design and taxonomy
• User flow creation
• Keyword research
• Etc.
@fighto
How to Learn More, Resources
• https://web.stanford.edu/~jurafsky/slp3/
• https://www.kaggle.com/learn/overview
• https://towardsdatascience.com
• https://github.com/keon/awesome-nlp
CatalystDigital.com | info@CatalystDigital.com
Organic Search | Paid Search | Paid Social Advertising
Ecommerce Marketing & Amazon Advertising
Thank You!

More Related Content

What's hot

Google‘s Hummingbird update explained
Google‘s Hummingbird update explainedGoogle‘s Hummingbird update explained
Google‘s Hummingbird update explainedLink-Assistant.Com
 
What I Learned Building a Toy Example to Crawl & Render like Google
What I Learned Building a Toy Example to Crawl & Render like GoogleWhat I Learned Building a Toy Example to Crawl & Render like Google
What I Learned Building a Toy Example to Crawl & Render like GoogleCatalyst
 
Advanced Technical SEO in 2020 - Data Science
Advanced Technical SEO in 2020 - Data ScienceAdvanced Technical SEO in 2020 - Data Science
Advanced Technical SEO in 2020 - Data ScienceTyler Reardon
 
Google Hummingbird and Semantic Search - An Update
Google Hummingbird and Semantic Search - An UpdateGoogle Hummingbird and Semantic Search - An Update
Google Hummingbird and Semantic Search - An UpdateEric Enge
 
Basic Search Engine Optimization techniques & tips
 Basic Search Engine Optimization techniques & tips Basic Search Engine Optimization techniques & tips
Basic Search Engine Optimization techniques & tipsGaurav Kakkar
 
How to Maximize Conversions Through SEO and CRO
How to Maximize Conversions Through SEO and CROHow to Maximize Conversions Through SEO and CRO
How to Maximize Conversions Through SEO and CROSean Si
 
Passage indexing is likely more important than you think
Passage indexing is likely more important than you thinkPassage indexing is likely more important than you think
Passage indexing is likely more important than you thinkDawn Anderson MSc DigM
 
Social bookmarking-for-dummies
Social bookmarking-for-dummiesSocial bookmarking-for-dummies
Social bookmarking-for-dummiesAivil Vin
 
Keyword Research and Topic Modeling in a Semantic Web
Keyword Research and Topic Modeling in a Semantic WebKeyword Research and Topic Modeling in a Semantic Web
Keyword Research and Topic Modeling in a Semantic WebBill Slawski
 
An Introduction to Python and Machine Learning for Technical SEO | All New Di...
An Introduction to Python and Machine Learning for Technical SEO | All New Di...An Introduction to Python and Machine Learning for Technical SEO | All New Di...
An Introduction to Python and Machine Learning for Technical SEO | All New Di...Ruth Everett
 
TechSEO Boost 2017: Making the Web Fast
TechSEO Boost 2017: Making the Web FastTechSEO Boost 2017: Making the Web Fast
TechSEO Boost 2017: Making the Web FastCatalyst
 
Google's Hummingbird and the Entity Search Revolution
Google's Hummingbird and the Entity Search RevolutionGoogle's Hummingbird and the Entity Search Revolution
Google's Hummingbird and the Entity Search RevolutionCyrus Shepard
 
Dan Cohen, Hands On Seo from Internet World 2009
Dan Cohen, Hands On Seo from Internet World 2009Dan Cohen, Hands On Seo from Internet World 2009
Dan Cohen, Hands On Seo from Internet World 2009Dan Cohen
 
TechSEO Boost 2017: SEO Best Practices for JavaScript T-Based Websites
TechSEO Boost 2017: SEO Best Practices for JavaScript T-Based WebsitesTechSEO Boost 2017: SEO Best Practices for JavaScript T-Based Websites
TechSEO Boost 2017: SEO Best Practices for JavaScript T-Based WebsitesCatalyst
 
Utilizing the natural langauage toolkit for keyword research
Utilizing the natural langauage toolkit for keyword researchUtilizing the natural langauage toolkit for keyword research
Utilizing the natural langauage toolkit for keyword researchErudite
 

What's hot (20)

Google‘s Hummingbird update explained
Google‘s Hummingbird update explainedGoogle‘s Hummingbird update explained
Google‘s Hummingbird update explained
 
Keywords
KeywordsKeywords
Keywords
 
What I Learned Building a Toy Example to Crawl & Render like Google
What I Learned Building a Toy Example to Crawl & Render like GoogleWhat I Learned Building a Toy Example to Crawl & Render like Google
What I Learned Building a Toy Example to Crawl & Render like Google
 
Advanced Technical SEO in 2020 - Data Science
Advanced Technical SEO in 2020 - Data ScienceAdvanced Technical SEO in 2020 - Data Science
Advanced Technical SEO in 2020 - Data Science
 
SEO Strategy
SEO StrategySEO Strategy
SEO Strategy
 
Google Hummingbird and Semantic Search - An Update
Google Hummingbird and Semantic Search - An UpdateGoogle Hummingbird and Semantic Search - An Update
Google Hummingbird and Semantic Search - An Update
 
Basic Search Engine Optimization techniques & tips
 Basic Search Engine Optimization techniques & tips Basic Search Engine Optimization techniques & tips
Basic Search Engine Optimization techniques & tips
 
How to Maximize Conversions Through SEO and CRO
How to Maximize Conversions Through SEO and CROHow to Maximize Conversions Through SEO and CRO
How to Maximize Conversions Through SEO and CRO
 
Rhea Drysdale - Advanced Search Summit Napa 2019
Rhea Drysdale - Advanced Search Summit Napa 2019Rhea Drysdale - Advanced Search Summit Napa 2019
Rhea Drysdale - Advanced Search Summit Napa 2019
 
Passage indexing is likely more important than you think
Passage indexing is likely more important than you thinkPassage indexing is likely more important than you think
Passage indexing is likely more important than you think
 
Upsana Gautam - Advanced Search Summit Napa 2019
Upsana Gautam - Advanced Search Summit Napa 2019Upsana Gautam - Advanced Search Summit Napa 2019
Upsana Gautam - Advanced Search Summit Napa 2019
 
Social bookmarking-for-dummies
Social bookmarking-for-dummiesSocial bookmarking-for-dummies
Social bookmarking-for-dummies
 
Keyword Research and Topic Modeling in a Semantic Web
Keyword Research and Topic Modeling in a Semantic WebKeyword Research and Topic Modeling in a Semantic Web
Keyword Research and Topic Modeling in a Semantic Web
 
An Introduction to Python and Machine Learning for Technical SEO | All New Di...
An Introduction to Python and Machine Learning for Technical SEO | All New Di...An Introduction to Python and Machine Learning for Technical SEO | All New Di...
An Introduction to Python and Machine Learning for Technical SEO | All New Di...
 
TechSEO Boost 2017: Making the Web Fast
TechSEO Boost 2017: Making the Web FastTechSEO Boost 2017: Making the Web Fast
TechSEO Boost 2017: Making the Web Fast
 
Google's Hummingbird and the Entity Search Revolution
Google's Hummingbird and the Entity Search RevolutionGoogle's Hummingbird and the Entity Search Revolution
Google's Hummingbird and the Entity Search Revolution
 
Patrick Stox - Advanced Search Summit Napa 2021
Patrick Stox - Advanced Search Summit Napa 2021Patrick Stox - Advanced Search Summit Napa 2021
Patrick Stox - Advanced Search Summit Napa 2021
 
Dan Cohen, Hands On Seo from Internet World 2009
Dan Cohen, Hands On Seo from Internet World 2009Dan Cohen, Hands On Seo from Internet World 2009
Dan Cohen, Hands On Seo from Internet World 2009
 
TechSEO Boost 2017: SEO Best Practices for JavaScript T-Based Websites
TechSEO Boost 2017: SEO Best Practices for JavaScript T-Based WebsitesTechSEO Boost 2017: SEO Best Practices for JavaScript T-Based Websites
TechSEO Boost 2017: SEO Best Practices for JavaScript T-Based Websites
 
Utilizing the natural langauage toolkit for keyword research
Utilizing the natural langauage toolkit for keyword researchUtilizing the natural langauage toolkit for keyword research
Utilizing the natural langauage toolkit for keyword research
 

Similar to Breaking Down NLP for SEOs - SMX Advanced Europe 2019 - Paul Shapiro

ChatGPT For Business Use
ChatGPT For Business UseChatGPT For Business Use
ChatGPT For Business UseSanjay Willie
 
Eric Vanbuskirk - SEMrush for Topic Gap Analysis
Eric Vanbuskirk - SEMrush for Topic Gap AnalysisEric Vanbuskirk - SEMrush for Topic Gap Analysis
Eric Vanbuskirk - SEMrush for Topic Gap Analysissemrush_webinars
 
How to unlock the secrets of effortless keyword research with ChatGPT.pptx
How to unlock the secrets of effortless keyword research with ChatGPT.pptxHow to unlock the secrets of effortless keyword research with ChatGPT.pptx
How to unlock the secrets of effortless keyword research with ChatGPT.pptxDaniel Smullen
 
Making Reddit Search Relevant and Scalable - Anupama Joshi & Jerry Bao, Reddit
Making Reddit Search Relevant and Scalable - Anupama Joshi & Jerry Bao, RedditMaking Reddit Search Relevant and Scalable - Anupama Joshi & Jerry Bao, Reddit
Making Reddit Search Relevant and Scalable - Anupama Joshi & Jerry Bao, RedditLucidworks
 
NLP Project PPT: Flipkart Product Reviews through NLP Data Science.pptx
NLP Project PPT: Flipkart Product Reviews through NLP Data Science.pptxNLP Project PPT: Flipkart Product Reviews through NLP Data Science.pptx
NLP Project PPT: Flipkart Product Reviews through NLP Data Science.pptxBoston Institute of Analytics
 
A crash course into SEO and what moves the needle with scalable processes
A crash course into SEO and what moves the needle with scalable processesA crash course into SEO and what moves the needle with scalable processes
A crash course into SEO and what moves the needle with scalable processespatrickstox
 
2019 Fall SourceCon Sourcing Tools Roundtable
2019 Fall SourceCon Sourcing Tools Roundtable2019 Fall SourceCon Sourcing Tools Roundtable
2019 Fall SourceCon Sourcing Tools RoundtableSusanna Frazier
 
ChatGPT-and-Generative-AI-Landscape Working of generative ai search
ChatGPT-and-Generative-AI-Landscape Working of generative ai searchChatGPT-and-Generative-AI-Landscape Working of generative ai search
ChatGPT-and-Generative-AI-Landscape Working of generative ai searchrohitcse52
 
Probabilistic Thinking in SEO - BrightonSEO October 2022
Probabilistic Thinking in SEO - BrightonSEO October 2022Probabilistic Thinking in SEO - BrightonSEO October 2022
Probabilistic Thinking in SEO - BrightonSEO October 2022Andrew Charlton
 
How to Teach and Learn with ChatGPT - BETT 2023
How to Teach and Learn with ChatGPT - BETT 2023How to Teach and Learn with ChatGPT - BETT 2023
How to Teach and Learn with ChatGPT - BETT 2023Dominik Lukes
 
Serverless Text Analytics with Amazon Comprehend
Serverless Text Analytics with Amazon ComprehendServerless Text Analytics with Amazon Comprehend
Serverless Text Analytics with Amazon ComprehendDonnie Prakoso
 
MancSEO - Using the SERPs for SEO, Content & Customer Insights
MancSEO - Using the SERPs for SEO, Content & Customer InsightsMancSEO - Using the SERPs for SEO, Content & Customer Insights
MancSEO - Using the SERPs for SEO, Content & Customer InsightsRory Truesdale
 
SearchLove London - Analysing the SERPs for SEO, Content & Customer Insights
SearchLove London - Analysing the SERPs for SEO, Content & Customer InsightsSearchLove London - Analysing the SERPs for SEO, Content & Customer Insights
SearchLove London - Analysing the SERPs for SEO, Content & Customer InsightsRory Truesdale
 
You've Got (Big) Data! Now What?
You've Got (Big) Data! Now What?You've Got (Big) Data! Now What?
You've Got (Big) Data! Now What?Jess Freaner
 
ChatGPT and AI for web developers - Maximiliano Firtman
ChatGPT and AI for web developers - Maximiliano FirtmanChatGPT and AI for web developers - Maximiliano Firtman
ChatGPT and AI for web developers - Maximiliano FirtmanWey Wey Web
 
Growth Hacking Strategies For Rapid Growth
Growth Hacking Strategies For Rapid GrowthGrowth Hacking Strategies For Rapid Growth
Growth Hacking Strategies For Rapid GrowthRoland Frasier
 
Exploring ChatGPT Prompt Hacks To Maximally Optimise Your Queries
Exploring ChatGPT Prompt Hacks To Maximally Optimise Your QueriesExploring ChatGPT Prompt Hacks To Maximally Optimise Your Queries
Exploring ChatGPT Prompt Hacks To Maximally Optimise Your QueriesSanjay Willie
 
BrightonSEO 2019 - Mining the SERP for SEO, Content & Customer Insights
BrightonSEO 2019 - Mining the SERP for SEO, Content & Customer InsightsBrightonSEO 2019 - Mining the SERP for SEO, Content & Customer Insights
BrightonSEO 2019 - Mining the SERP for SEO, Content & Customer InsightsRory Truesdale
 

Similar to Breaking Down NLP for SEOs - SMX Advanced Europe 2019 - Paul Shapiro (20)

ChatGPT For Business Use
ChatGPT For Business UseChatGPT For Business Use
ChatGPT For Business Use
 
Eric Vanbuskirk - SEMrush for Topic Gap Analysis
Eric Vanbuskirk - SEMrush for Topic Gap AnalysisEric Vanbuskirk - SEMrush for Topic Gap Analysis
Eric Vanbuskirk - SEMrush for Topic Gap Analysis
 
How to unlock the secrets of effortless keyword research with ChatGPT.pptx
How to unlock the secrets of effortless keyword research with ChatGPT.pptxHow to unlock the secrets of effortless keyword research with ChatGPT.pptx
How to unlock the secrets of effortless keyword research with ChatGPT.pptx
 
Making Reddit Search Relevant and Scalable - Anupama Joshi & Jerry Bao, Reddit
Making Reddit Search Relevant and Scalable - Anupama Joshi & Jerry Bao, RedditMaking Reddit Search Relevant and Scalable - Anupama Joshi & Jerry Bao, Reddit
Making Reddit Search Relevant and Scalable - Anupama Joshi & Jerry Bao, Reddit
 
Key Phrases for Better Search
Key Phrases for Better SearchKey Phrases for Better Search
Key Phrases for Better Search
 
NLP Project PPT: Flipkart Product Reviews through NLP Data Science.pptx
NLP Project PPT: Flipkart Product Reviews through NLP Data Science.pptxNLP Project PPT: Flipkart Product Reviews through NLP Data Science.pptx
NLP Project PPT: Flipkart Product Reviews through NLP Data Science.pptx
 
A crash course into SEO and what moves the needle with scalable processes
A crash course into SEO and what moves the needle with scalable processesA crash course into SEO and what moves the needle with scalable processes
A crash course into SEO and what moves the needle with scalable processes
 
2019 Fall SourceCon Sourcing Tools Roundtable
2019 Fall SourceCon Sourcing Tools Roundtable2019 Fall SourceCon Sourcing Tools Roundtable
2019 Fall SourceCon Sourcing Tools Roundtable
 
ChatGPT-and-Generative-AI-Landscape Working of generative ai search
ChatGPT-and-Generative-AI-Landscape Working of generative ai searchChatGPT-and-Generative-AI-Landscape Working of generative ai search
ChatGPT-and-Generative-AI-Landscape Working of generative ai search
 
Probabilistic Thinking in SEO - BrightonSEO October 2022
Probabilistic Thinking in SEO - BrightonSEO October 2022Probabilistic Thinking in SEO - BrightonSEO October 2022
Probabilistic Thinking in SEO - BrightonSEO October 2022
 
How to Teach and Learn with ChatGPT - BETT 2023
How to Teach and Learn with ChatGPT - BETT 2023How to Teach and Learn with ChatGPT - BETT 2023
How to Teach and Learn with ChatGPT - BETT 2023
 
Serverless Text Analytics with Amazon Comprehend
Serverless Text Analytics with Amazon ComprehendServerless Text Analytics with Amazon Comprehend
Serverless Text Analytics with Amazon Comprehend
 
MancSEO - Using the SERPs for SEO, Content & Customer Insights
MancSEO - Using the SERPs for SEO, Content & Customer InsightsMancSEO - Using the SERPs for SEO, Content & Customer Insights
MancSEO - Using the SERPs for SEO, Content & Customer Insights
 
SearchLove London - Analysing the SERPs for SEO, Content & Customer Insights
SearchLove London - Analysing the SERPs for SEO, Content & Customer InsightsSearchLove London - Analysing the SERPs for SEO, Content & Customer Insights
SearchLove London - Analysing the SERPs for SEO, Content & Customer Insights
 
You've Got (Big) Data! Now What?
You've Got (Big) Data! Now What?You've Got (Big) Data! Now What?
You've Got (Big) Data! Now What?
 
ChatGPT and AI for web developers - Maximiliano Firtman
ChatGPT and AI for web developers - Maximiliano FirtmanChatGPT and AI for web developers - Maximiliano Firtman
ChatGPT and AI for web developers - Maximiliano Firtman
 
Growth Hacking Strategies For Rapid Growth
Growth Hacking Strategies For Rapid GrowthGrowth Hacking Strategies For Rapid Growth
Growth Hacking Strategies For Rapid Growth
 
Exploring ChatGPT Prompt Hacks To Maximally Optimise Your Queries
Exploring ChatGPT Prompt Hacks To Maximally Optimise Your QueriesExploring ChatGPT Prompt Hacks To Maximally Optimise Your Queries
Exploring ChatGPT Prompt Hacks To Maximally Optimise Your Queries
 
BrightonSEO 2019 - Mining the SERP for SEO, Content & Customer Insights
BrightonSEO 2019 - Mining the SERP for SEO, Content & Customer InsightsBrightonSEO 2019 - Mining the SERP for SEO, Content & Customer Insights
BrightonSEO 2019 - Mining the SERP for SEO, Content & Customer Insights
 
Unlocking the Power of ChatGPT
Unlocking the Power of ChatGPTUnlocking the Power of ChatGPT
Unlocking the Power of ChatGPT
 

More from Paul Shapiro

Redefining Technical SEO, #MozCon 2019 by Paul Shapiro
Redefining Technical SEO, #MozCon 2019 by Paul ShapiroRedefining Technical SEO, #MozCon 2019 by Paul Shapiro
Redefining Technical SEO, #MozCon 2019 by Paul ShapiroPaul Shapiro
 
How to Leverage APIs for SEO #TTTLive2019
How to Leverage APIs for SEO #TTTLive2019How to Leverage APIs for SEO #TTTLive2019
How to Leverage APIs for SEO #TTTLive2019Paul Shapiro
 
Start Building SEO Efficiencies with Automation - MNSearch Summit 2018
Start Building SEO Efficiencies with Automation - MNSearch Summit 2018Start Building SEO Efficiencies with Automation - MNSearch Summit 2018
Start Building SEO Efficiencies with Automation - MNSearch Summit 2018Paul Shapiro
 
Put Your Data To Work: Ways to Uncover Content Ideas That Deliver #Confluence...
Put Your Data To Work: Ways to Uncover Content Ideas That Deliver #Confluence...Put Your Data To Work: Ways to Uncover Content Ideas That Deliver #Confluence...
Put Your Data To Work: Ways to Uncover Content Ideas That Deliver #Confluence...Paul Shapiro
 
The Actionable Guide to Doing Better Semantic Keyword Research #BrightonSEO (...
The Actionable Guide to Doing Better Semantic Keyword Research #BrightonSEO (...The Actionable Guide to Doing Better Semantic Keyword Research #BrightonSEO (...
The Actionable Guide to Doing Better Semantic Keyword Research #BrightonSEO (...Paul Shapiro
 
Idea: Selling Clients Google+ Through YouTube
Idea: Selling Clients Google+ Through YouTubeIdea: Selling Clients Google+ Through YouTube
Idea: Selling Clients Google+ Through YouTubePaul Shapiro
 
Social-SEO Content Strategy: Ideas for a Data Driven Approach
Social-SEO Content Strategy: Ideas for a Data Driven ApproachSocial-SEO Content Strategy: Ideas for a Data Driven Approach
Social-SEO Content Strategy: Ideas for a Data Driven ApproachPaul Shapiro
 
Regular Expressions for Regular Joes (and SEOs)
Regular Expressions for Regular Joes (and SEOs)Regular Expressions for Regular Joes (and SEOs)
Regular Expressions for Regular Joes (and SEOs)Paul Shapiro
 

More from Paul Shapiro (8)

Redefining Technical SEO, #MozCon 2019 by Paul Shapiro
Redefining Technical SEO, #MozCon 2019 by Paul ShapiroRedefining Technical SEO, #MozCon 2019 by Paul Shapiro
Redefining Technical SEO, #MozCon 2019 by Paul Shapiro
 
How to Leverage APIs for SEO #TTTLive2019
How to Leverage APIs for SEO #TTTLive2019How to Leverage APIs for SEO #TTTLive2019
How to Leverage APIs for SEO #TTTLive2019
 
Start Building SEO Efficiencies with Automation - MNSearch Summit 2018
Start Building SEO Efficiencies with Automation - MNSearch Summit 2018Start Building SEO Efficiencies with Automation - MNSearch Summit 2018
Start Building SEO Efficiencies with Automation - MNSearch Summit 2018
 
Put Your Data To Work: Ways to Uncover Content Ideas That Deliver #Confluence...
Put Your Data To Work: Ways to Uncover Content Ideas That Deliver #Confluence...Put Your Data To Work: Ways to Uncover Content Ideas That Deliver #Confluence...
Put Your Data To Work: Ways to Uncover Content Ideas That Deliver #Confluence...
 
The Actionable Guide to Doing Better Semantic Keyword Research #BrightonSEO (...
The Actionable Guide to Doing Better Semantic Keyword Research #BrightonSEO (...The Actionable Guide to Doing Better Semantic Keyword Research #BrightonSEO (...
The Actionable Guide to Doing Better Semantic Keyword Research #BrightonSEO (...
 
Idea: Selling Clients Google+ Through YouTube
Idea: Selling Clients Google+ Through YouTubeIdea: Selling Clients Google+ Through YouTube
Idea: Selling Clients Google+ Through YouTube
 
Social-SEO Content Strategy: Ideas for a Data Driven Approach
Social-SEO Content Strategy: Ideas for a Data Driven ApproachSocial-SEO Content Strategy: Ideas for a Data Driven Approach
Social-SEO Content Strategy: Ideas for a Data Driven Approach
 
Regular Expressions for Regular Joes (and SEOs)
Regular Expressions for Regular Joes (and SEOs)Regular Expressions for Regular Joes (and SEOs)
Regular Expressions for Regular Joes (and SEOs)
 

Recently uploaded

1:1定制(UQ毕业证)昆士兰大学毕业证成绩单修改留信学历认证原版一模一样
1:1定制(UQ毕业证)昆士兰大学毕业证成绩单修改留信学历认证原版一模一样1:1定制(UQ毕业证)昆士兰大学毕业证成绩单修改留信学历认证原版一模一样
1:1定制(UQ毕业证)昆士兰大学毕业证成绩单修改留信学历认证原版一模一样vhwb25kk
 
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...dajasot375
 
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhi
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝DelhiRS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhi
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhijennyeacort
 
Call Girls In Dwarka 9654467111 Escorts Service
Call Girls In Dwarka 9654467111 Escorts ServiceCall Girls In Dwarka 9654467111 Escorts Service
Call Girls In Dwarka 9654467111 Escorts ServiceSapana Sha
 
RABBIT: A CLI tool for identifying bots based on their GitHub events.
RABBIT: A CLI tool for identifying bots based on their GitHub events.RABBIT: A CLI tool for identifying bots based on their GitHub events.
RABBIT: A CLI tool for identifying bots based on their GitHub events.natarajan8993
 
原版1:1定制南十字星大学毕业证(SCU毕业证)#文凭成绩单#真实留信学历认证永久存档
原版1:1定制南十字星大学毕业证(SCU毕业证)#文凭成绩单#真实留信学历认证永久存档原版1:1定制南十字星大学毕业证(SCU毕业证)#文凭成绩单#真实留信学历认证永久存档
原版1:1定制南十字星大学毕业证(SCU毕业证)#文凭成绩单#真实留信学历认证永久存档208367051
 
While-For-loop in python used in college
While-For-loop in python used in collegeWhile-For-loop in python used in college
While-For-loop in python used in collegessuser7a7cd61
 
Data Factory in Microsoft Fabric (MsBIP #82)
Data Factory in Microsoft Fabric (MsBIP #82)Data Factory in Microsoft Fabric (MsBIP #82)
Data Factory in Microsoft Fabric (MsBIP #82)Cathrine Wilhelmsen
 
PKS-TGC-1084-630 - Stage 1 Proposal.pptx
PKS-TGC-1084-630 - Stage 1 Proposal.pptxPKS-TGC-1084-630 - Stage 1 Proposal.pptx
PKS-TGC-1084-630 - Stage 1 Proposal.pptxPramod Kumar Srivastava
 
20240419 - Measurecamp Amsterdam - SAM.pdf
20240419 - Measurecamp Amsterdam - SAM.pdf20240419 - Measurecamp Amsterdam - SAM.pdf
20240419 - Measurecamp Amsterdam - SAM.pdfHuman37
 
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)jennyeacort
 
Predicting Salary Using Data Science: A Comprehensive Analysis.pdf
Predicting Salary Using Data Science: A Comprehensive Analysis.pdfPredicting Salary Using Data Science: A Comprehensive Analysis.pdf
Predicting Salary Using Data Science: A Comprehensive Analysis.pdfBoston Institute of Analytics
 
Statistics, Data Analysis, and Decision Modeling, 5th edition by James R. Eva...
Statistics, Data Analysis, and Decision Modeling, 5th edition by James R. Eva...Statistics, Data Analysis, and Decision Modeling, 5th edition by James R. Eva...
Statistics, Data Analysis, and Decision Modeling, 5th edition by James R. Eva...ssuserf63bd7
 
INTERNSHIP ON PURBASHA COMPOSITE TEX LTD
INTERNSHIP ON PURBASHA COMPOSITE TEX LTDINTERNSHIP ON PURBASHA COMPOSITE TEX LTD
INTERNSHIP ON PURBASHA COMPOSITE TEX LTDRafezzaman
 
Machine learning classification ppt.ppt
Machine learning classification  ppt.pptMachine learning classification  ppt.ppt
Machine learning classification ppt.pptamreenkhanum0307
 
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort servicejennyeacort
 
Generative AI for Social Good at Open Data Science East 2024
Generative AI for Social Good at Open Data Science East 2024Generative AI for Social Good at Open Data Science East 2024
Generative AI for Social Good at Open Data Science East 2024Colleen Farrelly
 
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一F sss
 
Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...
Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...
Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...limedy534
 

Recently uploaded (20)

1:1定制(UQ毕业证)昆士兰大学毕业证成绩单修改留信学历认证原版一模一样
1:1定制(UQ毕业证)昆士兰大学毕业证成绩单修改留信学历认证原版一模一样1:1定制(UQ毕业证)昆士兰大学毕业证成绩单修改留信学历认证原版一模一样
1:1定制(UQ毕业证)昆士兰大学毕业证成绩单修改留信学历认证原版一模一样
 
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
 
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhi
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝DelhiRS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhi
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhi
 
Call Girls In Dwarka 9654467111 Escorts Service
Call Girls In Dwarka 9654467111 Escorts ServiceCall Girls In Dwarka 9654467111 Escorts Service
Call Girls In Dwarka 9654467111 Escorts Service
 
RABBIT: A CLI tool for identifying bots based on their GitHub events.
RABBIT: A CLI tool for identifying bots based on their GitHub events.RABBIT: A CLI tool for identifying bots based on their GitHub events.
RABBIT: A CLI tool for identifying bots based on their GitHub events.
 
原版1:1定制南十字星大学毕业证(SCU毕业证)#文凭成绩单#真实留信学历认证永久存档
原版1:1定制南十字星大学毕业证(SCU毕业证)#文凭成绩单#真实留信学历认证永久存档原版1:1定制南十字星大学毕业证(SCU毕业证)#文凭成绩单#真实留信学历认证永久存档
原版1:1定制南十字星大学毕业证(SCU毕业证)#文凭成绩单#真实留信学历认证永久存档
 
While-For-loop in python used in college
While-For-loop in python used in collegeWhile-For-loop in python used in college
While-For-loop in python used in college
 
Data Factory in Microsoft Fabric (MsBIP #82)
Data Factory in Microsoft Fabric (MsBIP #82)Data Factory in Microsoft Fabric (MsBIP #82)
Data Factory in Microsoft Fabric (MsBIP #82)
 
PKS-TGC-1084-630 - Stage 1 Proposal.pptx
PKS-TGC-1084-630 - Stage 1 Proposal.pptxPKS-TGC-1084-630 - Stage 1 Proposal.pptx
PKS-TGC-1084-630 - Stage 1 Proposal.pptx
 
20240419 - Measurecamp Amsterdam - SAM.pdf
20240419 - Measurecamp Amsterdam - SAM.pdf20240419 - Measurecamp Amsterdam - SAM.pdf
20240419 - Measurecamp Amsterdam - SAM.pdf
 
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)
 
Predicting Salary Using Data Science: A Comprehensive Analysis.pdf
Predicting Salary Using Data Science: A Comprehensive Analysis.pdfPredicting Salary Using Data Science: A Comprehensive Analysis.pdf
Predicting Salary Using Data Science: A Comprehensive Analysis.pdf
 
Statistics, Data Analysis, and Decision Modeling, 5th edition by James R. Eva...
Statistics, Data Analysis, and Decision Modeling, 5th edition by James R. Eva...Statistics, Data Analysis, and Decision Modeling, 5th edition by James R. Eva...
Statistics, Data Analysis, and Decision Modeling, 5th edition by James R. Eva...
 
INTERNSHIP ON PURBASHA COMPOSITE TEX LTD
INTERNSHIP ON PURBASHA COMPOSITE TEX LTDINTERNSHIP ON PURBASHA COMPOSITE TEX LTD
INTERNSHIP ON PURBASHA COMPOSITE TEX LTD
 
Machine learning classification ppt.ppt
Machine learning classification  ppt.pptMachine learning classification  ppt.ppt
Machine learning classification ppt.ppt
 
Call Girls in Saket 99530🔝 56974 Escort Service
Call Girls in Saket 99530🔝 56974 Escort ServiceCall Girls in Saket 99530🔝 56974 Escort Service
Call Girls in Saket 99530🔝 56974 Escort Service
 
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service
 
Generative AI for Social Good at Open Data Science East 2024
Generative AI for Social Good at Open Data Science East 2024Generative AI for Social Good at Open Data Science East 2024
Generative AI for Social Good at Open Data Science East 2024
 
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
 
Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...
Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...
Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...
 

Breaking Down NLP for SEOs - SMX Advanced Europe 2019 - Paul Shapiro

Editor's Notes

  1. Let’s take a trip back to SEO grade school…
  2. We’re switching to spaCy for this because NLTK is slower and produces worse results
  3. Skip chunking