SlideShare a Scribd company logo
Machine Learning for SEOs
Britney Muller
@BritneyMuller
Machine Learning for SEOs - MozCon 2018
Machine Learning for SEOs - MozCon 2018
Machine Learning for SEOs - MozCon 2018
Machine Learning for SEOs - MozCon 2018
Machine Learning for SEOs - MozCon 2018
Machine Learning for SEOs - MozCon 2018
bit.ly/tf-for-poets
Machine Learning for SEOs - MozCon 2018
Machine Learning for SEOs - MozCon 2018
Machine Learning for SEOs - MozCon 2018
Machine Learning for SEOs - MozCon 2018
Machine Learning for SEOs - MozCon 2018
Machine Learning for SEOs - MozCon 2018
Machine Learning for SEOs - MozCon 2018
Image Spark Chrome Plugin
Machine Learning for SEOs - MozCon 2018
65% Probability this is Rand!
Automated Image Optimization
Machine Learning for SEOs - MozCon 2018
ML is everywhere!
Machine Learning for SEOs - MozCon 2018
Machine Learning for SEOs - MozCon 2018
Isn’t ML SO Exciting!?
1.Let’s break down Machine Learning
2. Discuss other ML applications for SEO
3. Tools & Resources
What is Machine Learning?
Machine Learning is a subset of AI that combines
statistics & programming to give computers the
ability to “learn” without explicitly being programmed.
Machine Learning for SEOs - MozCon 2018
Lady Ada Lovelace
Inspired Machine Learning
1843.
Alan Turing later referred to
it as “Lady Lovelace’s
objection.”
Supervised vs.
Unsupervised
Machine Learning for SEOs - MozCon 2018
Three Common Models:
Unsupervised Supervised
Home size vs
selling price
Duck or Snake?Animal Types
Three Common Models:
Machine Learning for SEOs - MozCon 2018
Linda Pumpkin
But, how do ML models get smarter?
The Loss Function:
Overfitting is a common problem in ML
Machine Learning for SEOs - MozCon 2018
If Machine Learning was a car,
data would be the fuel
Machine Learning for SEOs - MozCon 2018
Machine Learning for SEOs - MozCon 2018
1. What is Machine Learning & why you
should care?
2. How can you apply ML to SEO?
3. Tools & Resources
Voice Search Opportunities
Machine Learning for SEOs - MozCon 2018
Templates:
Machine Learning for SEOs - MozCon 2018
Machine Learning for SEOs - MozCon 2018
Machine Learning for SEOs - MozCon 2018
Machine Learning for SEOs - MozCon 2018
Recommendation Models Are Evolving
!?
!!
Pages per session went up 11.07% YoY
Help visitors stick around & get more value
Help visitors stick around & get more value
Cycling vs. Serpentining
Writing Meta Descriptions Sucks
Machine Learning for SEOs - MozCon 2018
Machine Learning for SEOs - MozCon 2018
Machine Learning for SEOs - MozCon 2018
Machine Learning for SEOs - MozCon 2018
Machine Learning for SEOs - MozCon 2018
Can you believe?!
@jroakes @GraysonParks
Grayson Parks
Writer, programmer, constant learner.
Digital marketer, husband, golden
retriever owner. Words and data are my
Passions. #SEO @AdaptPartners
GraysonParks.com
JR Oaks
Hacker, Technical SEO, NC State
fan, co-organizer
Of Raleigh & RTP Meetups, as well
as Search Engine Land author
codeseo.io
Machine Learning for SEOs - MozCon 2018
1. Assist with deploying AWS Lambda. --Several steps will affect the cost & security.
2. Extract the content of the webpage using the library Goose3 (a Python library w/BeautifulSoup).
3. Summarize the content using summa (or another summarizing library/model)
4. Create a Lambda Function.
a. Package the files for AWS Lambda & install the dependencies (in this case Goose3 and
summa, etc) into a folder along with what is called a handler file. The handler file is what
Lambda calls to run your script.
b. Here is the packaged Lambda function (including the dependencies):
https://s3.amazonaws.com/ap-lambda-functions/meta_summa.zip
5. Once the zip file is deployed to AWS as a Lambda function, you should get a URL to access the API
that looks like:
https://XXXXXXXX.execute-api.us-east-1.amazonaws.com/v1/ap_meta_descriptions
Find a developer familiar with AWS to:
function pageDescription(url, length) {
if (typeof length == 'undefined' || !length || length < 1){
var endpoint = 'https://XXXXXXXX.execute-api.us-east-1.amazonaws.com/v1/ap_meta_descriptions?url=' + url;
}else{
var endpoint = 'https://XXXXXXXX.execute-api.us-east-1.amazonaws.com/v1/ap_meta_descriptions?url=' + url + "&len=" + length;
}
var response = UrlFetchApp.fetch(endpoint);
var text = response.getContentText();
var data = JSON.parse(text);
if (data){
return data.meta_description
}
}
Copy & Paste like a badass in GSheets! =pageDescription(A2, 150)
Machine Learning for SEOs - MozCon 2018
Machine Learning for SEOs - MozCon 2018
Use Text Summarization Algorithms to Help Aid the
Writing of Meta Descriptions (GitHub Repo)
Finding ranking opportunities
Title tag optimization
Keyword opportunity gaps
Client reports
Finding common question opportunities
Content creation
Log file analysis
Ranking predictions
Site crawl opportunities
GSC data analysis
Rich customer understanding
Traffic predictions
Ranking factor probabilities
User engagement
Other SEO Opportunities with Machine Learning:
1. What is Machine Learning & why you
should care?
2. How can you apply ML to SEO?
3. Tools & Resources
1. Collect & clean dataset
2. Build your model
3. Train
4. Evaluate
5. Predict
Most of the work
A few lines of code
One line
One line
One line
How to build your first ML model:
Machine Learning for SEOs - MozCon 2018
Machine Learning for SEOs - MozCon 2018
Machine Learning for SEOs - MozCon 2018
Machine Learning for SEOs - MozCon 2018
Machine Learning for SEOs - MozCon 2018
Machine Learning for SEOs - MozCon 2018
Machine Learning for SEOs - MozCon 2018
CPU > GPU > TPU
Google’s Machine Learning Crash Course
Google Code Labs
Colab Notebooks
Learn With Google AI
Image-net.org
Kaggle
Getting Started Resources
Yearning Learning (free book preview by
Andre Ng)
Neural Networks & Deep Learning
Correlation vs Causation (by Dr. Pete!)
Exploring Word2Vec
The Zipf Mystery
BigML
Targeting Broad Queries in Search
Project Mosaic Books
How to eliminate bias in data driven
marketing
TensorFlow Dev Summit 2018 [videos]
NLP Sentiment Analysis
Talk 2 Books
Image-Net
The Shallowness of Google Translate
TF-IDF
LSI
LDA
Learn Python
Massive Open Online Courses
Coursera Machine Learning
Advanced Resources
What did we learn?
What did we learn?
➢ Machine Learning combines statistics & programming
➢ A model is only as good as its training data
➢ The loss function helps us improve models, but
overfitting should be avoided.
➢ YOU can create a ML model today!!!
➢ ML will help scale SEO tasks & allow us to evolve as SEOs
Machine Learning for SEOs - MozCon 2018
Machine Learning for SEOs - MozCon 2018
I lost it...
Machine Learning for SEOs - MozCon 2018
Thank you!
@BritneyMuller
britney@moz.com
Machine Learning for SEOs - MozCon 2018
&
Machine Learning for SEOs - MozCon 2018
“One of the major promises of AI is freeing
people from mindless tasks, so they can do more
meaningful work.”
-SAM DEBRULE
Machine Learning for SEOs - MozCon 2018
Parcey McParseface
&
Machine Learning for SEOs - MozCon 2018
voice.mozilla.org
www.kdnuggets.com
Machine Learning for SEOs - MozCon 2018
Resource
Smart Compose:
&
Why SEOs Need To Know About ML:
ML already effects the work that you’re doing.
You should be able to speak intelligently about ML(especially with clients).
Level up your skills by adding ML to your toolbox!

More Related Content

PDF
The Future Of SEO/Content Marketing
PPTX
SearchLove San Diego 2019 - Britney Muller - Machine Learning: Know Enough To...
PPTX
The Future of SEO #LearnInbound
PDF
Hummingbird Proof eCommerce SEO Planning - #BrightonSEO April 2014
PDF
Google‘s Hummingbird update explained
PPTX
Google SEO 2013 - Hummingbird and Beyond
PDF
SearchLeeds 2019 - Britney Muller - Moz - Machine Learning for SEOs
PPTX
Brighton SEO - Site Speed for Content Marketers
The Future Of SEO/Content Marketing
SearchLove San Diego 2019 - Britney Muller - Machine Learning: Know Enough To...
The Future of SEO #LearnInbound
Hummingbird Proof eCommerce SEO Planning - #BrightonSEO April 2014
Google‘s Hummingbird update explained
Google SEO 2013 - Hummingbird and Beyond
SearchLeeds 2019 - Britney Muller - Moz - Machine Learning for SEOs
Brighton SEO - Site Speed for Content Marketers

What's hot (20)

PPTX
Breaking Down NLP for SEOs - SMX Advanced Europe 2019 - Paul Shapiro
PDF
SearchLove Boston 2016 | Mike King | Developer Thinking for SEOs
PPTX
GOOGLE ALGORITHM - 2014 A LOOK SEO
PPTX
TechSEO Boost 2017: Fun with Machine Learning: How Machine Learning is Shapin...
PPTX
Scaling Keyword Research to Find Content Gaps
PDF
Google Hummingbird - What does it mean for SEO?
PPT
prestiva_blackhat
PPTX
Google algorithms
PPTX
How Google Search Algorithm Works ??
PPTX
Inside google search - how it works??
PPTX
Presentation of google algorithm
PDF
Competitive On Site Optimization
PPTX
TechSEO Boost 2017: Working Smarter: SEO Automation to Increase Efficiency & ...
PPTX
Redefining Technical SEO, #MozCon 2019 by Paul Shapiro
PPTX
Google algorithim’s
PDF
SearchLeeds 2019 - Polly Pospelova - How to hack rankings with page speed opt...
PDF
Google Hummingbird by Andrew
PDF
The State of the Web: Pagination and Infinite Scroll
PDF
Humming bird doc (1)
PDF
Search engine assistance
Breaking Down NLP for SEOs - SMX Advanced Europe 2019 - Paul Shapiro
SearchLove Boston 2016 | Mike King | Developer Thinking for SEOs
GOOGLE ALGORITHM - 2014 A LOOK SEO
TechSEO Boost 2017: Fun with Machine Learning: How Machine Learning is Shapin...
Scaling Keyword Research to Find Content Gaps
Google Hummingbird - What does it mean for SEO?
prestiva_blackhat
Google algorithms
How Google Search Algorithm Works ??
Inside google search - how it works??
Presentation of google algorithm
Competitive On Site Optimization
TechSEO Boost 2017: Working Smarter: SEO Automation to Increase Efficiency & ...
Redefining Technical SEO, #MozCon 2019 by Paul Shapiro
Google algorithim’s
SearchLeeds 2019 - Polly Pospelova - How to hack rankings with page speed opt...
Google Hummingbird by Andrew
The State of the Web: Pagination and Infinite Scroll
Humming bird doc (1)
Search engine assistance
Ad

Similar to Machine Learning for SEOs - MozCon 2018 (20)

PPTX
Machine Learning - Know Enough To Be Dangerous #SearchLove
PPTX
ML & Automation in SEO - Traffic Think Tank Conference 2019
PPTX
Machine Learning For SEOs - TechSEOBoost 2018
PDF
TechSEO Boost: Machine Learning for SEOs
PPTX
ML for SEOs - Content Jam 2019
PPTX
Machine Learning for SEOs - SMXL
PDF
Machine learning with TensorFlow
PDF
Introduction to AI/ML with AWS
PDF
Machine Learning for SEOs - SearchLeeds - Britney Muller
PDF
Gaps in the algorithm
PDF
AWS Machine Learning & Google Cloud Machine Learning
PPTX
Machine Learning for Non-Technical People - Turing Fest 2019
PDF
A beginner's guide to machine learning for SEOs - WTSFest 2022
PPTX
Machine Learning for Marketers - CTAConf 2019
PDF
The Modern Tech Stack: Machine Learning for Builders: Tools, Trends, and Truths
PDF
SKL208 - Turbocharge your Business with AI and Machine Learning - Tel Aviv Su...
PDF
Europython - Machine Learning for dummies with Python
PPTX
Introduction to Machine learning
PDF
AWS Summit Singapore 2019 | Build, Train and Deploy Deep Learning Models on A...
PDF
Build Machine Learning Models with Amazon SageMaker (April 2019)
Machine Learning - Know Enough To Be Dangerous #SearchLove
ML & Automation in SEO - Traffic Think Tank Conference 2019
Machine Learning For SEOs - TechSEOBoost 2018
TechSEO Boost: Machine Learning for SEOs
ML for SEOs - Content Jam 2019
Machine Learning for SEOs - SMXL
Machine learning with TensorFlow
Introduction to AI/ML with AWS
Machine Learning for SEOs - SearchLeeds - Britney Muller
Gaps in the algorithm
AWS Machine Learning & Google Cloud Machine Learning
Machine Learning for Non-Technical People - Turing Fest 2019
A beginner's guide to machine learning for SEOs - WTSFest 2022
Machine Learning for Marketers - CTAConf 2019
The Modern Tech Stack: Machine Learning for Builders: Tools, Trends, and Truths
SKL208 - Turbocharge your Business with AI and Machine Learning - Tel Aviv Su...
Europython - Machine Learning for dummies with Python
Introduction to Machine learning
AWS Summit Singapore 2019 | Build, Train and Deploy Deep Learning Models on A...
Build Machine Learning Models with Amazon SageMaker (April 2019)
Ad

Recently uploaded (20)

PPTX
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PPTX
PPH.pptx obstetrics and gynecology in nursing
PDF
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PDF
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
PDF
VCE English Exam - Section C Student Revision Booklet
PDF
TR - Agricultural Crops Production NC III.pdf
PDF
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
PPTX
Pharma ospi slides which help in ospi learning
PDF
Anesthesia in Laparoscopic Surgery in India
PDF
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
PPTX
Renaissance Architecture: A Journey from Faith to Humanism
PDF
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
PDF
O7-L3 Supply Chain Operations - ICLT Program
PDF
Insiders guide to clinical Medicine.pdf
PDF
Complications of Minimal Access Surgery at WLH
PDF
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
PPTX
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
PDF
RMMM.pdf make it easy to upload and study
PDF
Abdominal Access Techniques with Prof. Dr. R K Mishra
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PPH.pptx obstetrics and gynecology in nursing
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
Final Presentation General Medicine 03-08-2024.pptx
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
VCE English Exam - Section C Student Revision Booklet
TR - Agricultural Crops Production NC III.pdf
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
Pharma ospi slides which help in ospi learning
Anesthesia in Laparoscopic Surgery in India
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
Renaissance Architecture: A Journey from Faith to Humanism
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
O7-L3 Supply Chain Operations - ICLT Program
Insiders guide to clinical Medicine.pdf
Complications of Minimal Access Surgery at WLH
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
RMMM.pdf make it easy to upload and study
Abdominal Access Techniques with Prof. Dr. R K Mishra

Machine Learning for SEOs - MozCon 2018

  • 1. Machine Learning for SEOs Britney Muller @BritneyMuller
  • 24. Isn’t ML SO Exciting!?
  • 25. 1.Let’s break down Machine Learning 2. Discuss other ML applications for SEO 3. Tools & Resources
  • 26. What is Machine Learning? Machine Learning is a subset of AI that combines statistics & programming to give computers the ability to “learn” without explicitly being programmed.
  • 28. Lady Ada Lovelace Inspired Machine Learning 1843. Alan Turing later referred to it as “Lady Lovelace’s objection.”
  • 32. Unsupervised Supervised Home size vs selling price Duck or Snake?Animal Types Three Common Models:
  • 35. But, how do ML models get smarter?
  • 37. Overfitting is a common problem in ML
  • 39. If Machine Learning was a car, data would be the fuel
  • 42. 1. What is Machine Learning & why you should care? 2. How can you apply ML to SEO? 3. Tools & Resources
  • 51. !?
  • 52. !!
  • 53. Pages per session went up 11.07% YoY
  • 54. Help visitors stick around & get more value
  • 55. Help visitors stick around & get more value
  • 64. @jroakes @GraysonParks Grayson Parks Writer, programmer, constant learner. Digital marketer, husband, golden retriever owner. Words and data are my Passions. #SEO @AdaptPartners GraysonParks.com JR Oaks Hacker, Technical SEO, NC State fan, co-organizer Of Raleigh & RTP Meetups, as well as Search Engine Land author codeseo.io
  • 66. 1. Assist with deploying AWS Lambda. --Several steps will affect the cost & security. 2. Extract the content of the webpage using the library Goose3 (a Python library w/BeautifulSoup). 3. Summarize the content using summa (or another summarizing library/model) 4. Create a Lambda Function. a. Package the files for AWS Lambda & install the dependencies (in this case Goose3 and summa, etc) into a folder along with what is called a handler file. The handler file is what Lambda calls to run your script. b. Here is the packaged Lambda function (including the dependencies): https://s3.amazonaws.com/ap-lambda-functions/meta_summa.zip 5. Once the zip file is deployed to AWS as a Lambda function, you should get a URL to access the API that looks like: https://XXXXXXXX.execute-api.us-east-1.amazonaws.com/v1/ap_meta_descriptions Find a developer familiar with AWS to:
  • 67. function pageDescription(url, length) { if (typeof length == 'undefined' || !length || length < 1){ var endpoint = 'https://XXXXXXXX.execute-api.us-east-1.amazonaws.com/v1/ap_meta_descriptions?url=' + url; }else{ var endpoint = 'https://XXXXXXXX.execute-api.us-east-1.amazonaws.com/v1/ap_meta_descriptions?url=' + url + "&len=" + length; } var response = UrlFetchApp.fetch(endpoint); var text = response.getContentText(); var data = JSON.parse(text); if (data){ return data.meta_description } } Copy & Paste like a badass in GSheets! =pageDescription(A2, 150)
  • 70. Use Text Summarization Algorithms to Help Aid the Writing of Meta Descriptions (GitHub Repo)
  • 71. Finding ranking opportunities Title tag optimization Keyword opportunity gaps Client reports Finding common question opportunities Content creation Log file analysis Ranking predictions Site crawl opportunities GSC data analysis Rich customer understanding Traffic predictions Ranking factor probabilities User engagement Other SEO Opportunities with Machine Learning:
  • 72. 1. What is Machine Learning & why you should care? 2. How can you apply ML to SEO? 3. Tools & Resources
  • 73. 1. Collect & clean dataset 2. Build your model 3. Train 4. Evaluate 5. Predict Most of the work A few lines of code One line One line One line How to build your first ML model:
  • 81. CPU > GPU > TPU
  • 82. Google’s Machine Learning Crash Course Google Code Labs Colab Notebooks Learn With Google AI Image-net.org Kaggle Getting Started Resources
  • 83. Yearning Learning (free book preview by Andre Ng) Neural Networks & Deep Learning Correlation vs Causation (by Dr. Pete!) Exploring Word2Vec The Zipf Mystery BigML Targeting Broad Queries in Search Project Mosaic Books How to eliminate bias in data driven marketing TensorFlow Dev Summit 2018 [videos] NLP Sentiment Analysis Talk 2 Books Image-Net The Shallowness of Google Translate TF-IDF LSI LDA Learn Python Massive Open Online Courses Coursera Machine Learning Advanced Resources
  • 84. What did we learn?
  • 85. What did we learn? ➢ Machine Learning combines statistics & programming ➢ A model is only as good as its training data ➢ The loss function helps us improve models, but overfitting should be avoided. ➢ YOU can create a ML model today!!! ➢ ML will help scale SEO tasks & allow us to evolve as SEOs
  • 92. &
  • 94. “One of the major promises of AI is freeing people from mindless tasks, so they can do more meaningful work.” -SAM DEBRULE
  • 97. &
  • 104. &
  • 105. Why SEOs Need To Know About ML: ML already effects the work that you’re doing. You should be able to speak intelligently about ML(especially with clients). Level up your skills by adding ML to your toolbox!

Editor's Notes

  • #2: (35mins) We are drowning in data but starved for knowledge
  • #6: Want to plant the seed of ML into all of your heads, dymistify it and show how accessible it is to eversingle person in this room
  • #7: I wanna thank my parents for somehow raising me to have confidence that is disproportionate with my looks and abilities.
  • #8: CodeLabs.
  • #9: Inception model for flowers that I piggybacked off of. The best artists steal! <--That’s how I learn. Ok this works, how can I tweak it for what I need it to do?
  • #11: Over 14 million images have been hand-annotated by ImageNet to indicate what objects are pictured
  • #15: Bonus material I’ve removed from my deck
  • #20: Who here enjoys adding alt text to images!? NO ONE!!! WE SHOULD BE SPENDING OUR TIME ON MORE IMPORTANT THINGS LIKE STRATEGY!
  • #21: Who here enjoys adding alt text to images!? NO ONE!!! WE SHOULD BE SPENDING OUR TIME ON MORE IMPORTANT THINGS LIKE STRATEGY!
  • #22: ML models just like that are already all around us. And they are saving lives!
  • #24: Forget NLP, we are moving on to NLG
  • #26: I aim to demystify Machine Learning and make it approachable for every single person in this room.
  • #27: It’s funny we actually created a ML model at Moz to see if it could train itself to determine a better DA score than what we currently have. It discovered that
  • #29: She criticised the Analytical Engine which was designed in the 1830s to use mechanical operations to automated certain computations from the field of mathematical analysis. She essentially noted how the AE assists in making things available that we’re already aware of. Turing Machine allowed us to decipher german encryptions to help us
  • #30: We will be focusing on Supervised Learning
  • #35: Clarify labels & importance of training data.
  • #36: Just like we do, practice!
  • #37: Mean squared error represents a common loss function that tells you how far off you are from perfect. While you likely won’t create a perfect model, you can continue making tweaks by continuing to run epochs & steps to get a closer fit. Vanishing gradient and overfitting are problems if you run the model too far.
  • #38: The problem becomes overfitting, which does a poor job of accounting for new data. It’s essentially the same as:
  • #47: First glance at keyword research FOR VOICE!!!!
  • #50: Hey Google, talk to SEO quiz $200 adwords & a free tshirt!
  • #51: So should we
  • #52: Last year I talked about I helped improve Moz’s blog recommendations by changing the suggested articles to be pulled from just the first category.
  • #57: Can be a bit depressing to show people the best stuff up front (unless you’re a search engine). Shops show delightful surprises throughout, websites can do the same thing and engagement can go up! But it’s a UX decision.
  • #59: Large sites struggle to write meta descriptions at scale!
  • #60: Large sites struggle to write meta descriptions at scale! ADD META RIGHT UNDERNETH
  • #61: There are already models programmed to summarize long form content.
  • #62: Took this person’s question and the top voted answer, plugged it into the model ...
  • #63: NOT BAD!?
  • #64: AUTOMATE THIS AT SCALE. FEATURED SNIPPET TERRITORY!
  • #72: We are just scratching the surface of what’s capable
  • #74: What will you come up with?
  • #78: Don’t have to install tensorflow or other programs Free GPU Collaborative
  • #79: Connect it back to SEO
  • #80: Bias in data and the ethics of Machine Learning deserve an entirely other talk
  • #82: Hardware is quickly improving following Moore’s Law
  • #92: Netflix Kaggle story if I have time
  • #93: Rand is my muse. Love this analysis on things he’s been negative vs positive about recently :)
  • #97: Open source technology to break sentences down into components to better understand the meaning of words.
  • #101: TensorFlow was originally developed by researchers and engineers working on the Google Brain Team within Google’s Machine Intelligence research organization.
  • #106: By the end of this talk ((if I’ve done a good job) you will have these understandings covered.