René's URL Explorer Experiment


Title: Using k-Nearest Neighbors (kNN) in Python (Overview) (Video) – Real Python

Open Graph Title: Using k-Nearest Neighbors (kNN) in Python (Overview) – Real Python

Description: Welcome to Using k-Nearest Neighbors in Python. I’m Kimberly with Real Python, and I’ll be your instructor for this video course. I’m delighted to discuss k-nearest neighbors with you because it’s one of the most flexible and intuitive machine…

Open Graph Description: Welcome to Using k-Nearest Neighbors in Python. I’m Kimberly with Real Python, and I’ll be your instructor for this video course. I’m delighted to discuss k-nearest neighbors with you because it’s one of the most flexible and intuitive machine…

Opengraph URL: https://realpython.com/videos/knn-python-overview/

X: @realpython

direct link

Domain: realpython.com


Hey, it has json ld scripts:
  {
    "@context": "https://schema.org",
    "@type": "VideoObject",
    "name": "Using k\u002DNearest Neighbors (kNN) in Python (Overview)",
    "description": "Welcome to Using k\u002DNearest Neighbors in Python. I’m Kimberly with Real Python, and I’ll be your instructor for this video course. I’m delighted to discuss k\u002Dnearest neighbors with you because it’s one of the most flexible and intuitive machine…",
    "thumbnailUrl": ["https://files.realpython.com/media/k-Nearest-Neighbors-in-Python-Guide_Watermarked.a2475a6087a3.jpg"],
    "uploadDate": "2023-05-23T14:00:00+00:00",
    "duration": "PT1M41S",
    "embedUrl": "https://player.vimeo.com/video/825249955",
    "potentialAction": {
      "@type": "SeekToAction",
      "target": "https://realpython.com/videos/knn-python-overview/#t={seek_to_second_number}",
      "startOffset-input": "required name=seek_to_second_number"
    }
  }
  

authorReal Python
twitter:cardsummary_large_image
twitter:imagehttps://files.realpython.com/media/k-Nearest-Neighbors-in-Python-Guide_Watermarked.a2475a6087a3.jpg
og:imagehttps://files.realpython.com/media/k-Nearest-Neighbors-in-Python-Guide_Watermarked.a2475a6087a3.jpg
twitter:creator@realpython
og:typevideo.episode

Links:

https://realpython.com/
Start Herehttps://realpython.com/start-here/
Learn Python https://realpython.com/courses/knn-python/continue/
Python Tutorials →In-depth articles and video courseshttps://realpython.com/search?kind=article&kind=course&order=newest
Learning Paths →Guided study plans for accelerated learninghttps://realpython.com/learning-paths/
Quizzes & Exercises →Check your learning progresshttps://realpython.com/quizzes/
Browse Topics →Focus on a specific area or skill levelhttps://realpython.com/tutorials/all/
Community Chat →Learn with other Pythonistashttps://realpython.com/community/
Office Hours →Live Q&A calls with Python expertshttps://realpython.com/office-hours/
Podcast →Hear what’s new in the world of Pythonhttps://realpython.com/podcasts/rpp/
Books →Round out your knowledge and learn offlinehttps://realpython.com/products/books/
Reference →Concise definitions for common Python termshttps://realpython.com/ref/
Code Mentor →BetaPersonalized code assistance & learning toolshttps://realpython.com/mentor/
Unlock All Content →https://realpython.com/account/join/
More https://realpython.com/courses/knn-python/continue/
Learner Storieshttps://realpython.com/learner-stories/
Python Newsletterhttps://realpython.com/newsletter/
Python Job Boardhttps://www.pythonjobshq.com
Meet the Teamhttps://realpython.com/team/
Become a Tutorial Writerhttps://realpython.com/write-for-us/
Become a Video Instructorhttps://realpython.com/become-an-instructor/
Searchhttps://realpython.com/search
https://realpython.com/search
Joinhttps://realpython.com/account/join/
Sign‑Inhttps://realpython.com/account/login/?next=%2Fvideos%2Fknn-python-overview%2F
https://realpython.com/courses/knn-python/#team
Using k-Nearest Neighbors (kNN) in Pythonhttps://realpython.com/courses/knn-python/
Kimberly Fesselhttps://realpython.com/courses/knn-python/#team
Recommended Tutorialhttps://realpython.com/knn-python/
Course Slides (PDF)https://realpython.com/courses/knn-python/downloads/knn-python-slides/
Sample Code (IPYNB)https://realpython.com/courses/knn-python/downloads/knn-python-code/
Ask a Questionhttps://realpython.com/courses/knn-python/continue/#discussion
https://realpython.com/feedback/survey/course/knn-python/liked/?from=lesson-title
https://realpython.com/feedback/survey/course/knn-python/disliked/?from=lesson-title
Contentshttps://realpython.com/courses/knn-python/continue/#description
Transcripthttps://realpython.com/courses/knn-python/continue/#transcript
Discussionhttps://realpython.com/courses/knn-python/continue/#discussion
machine learninghttps://realpython.com/learning-paths/machine-learning-python/
NumPyhttps://realpython.com/numpy-tutorial/
scikit-learnhttps://scikit-learn.org/stable/
Sample Code (IPYNB)https://realpython.com/courses/knn-python/downloads/knn-python-code/
Course Slides (PDF)https://realpython.com/courses/knn-python/downloads/knn-python-slides/
00:00https://realpython.com/courses/knn-python/continue/#t=0.58
Welcome to Using k-Nearest Neighbors in Python.https://realpython.com/courses/knn-python/continue/#t=0.58
I’m Kimberly with Real Python, and I’ll be your instructor for this video course.https://realpython.com/courses/knn-python/continue/#t=3.6
I’m delighted to discuss k-nearest neighbors with you because it’s one of the mosthttps://realpython.com/courses/knn-python/continue/#t=8.36
flexible and intuitive machine learning algorithms.https://realpython.com/courses/knn-python/continue/#t=12.66
00:17https://realpython.com/courses/knn-python/continue/#t=17.48
In many data science problems,https://realpython.com/courses/knn-python/continue/#t=17.48
you’ll present an algorithm with a dataset of known features, like width andhttps://realpython.com/courses/knn-python/continue/#t=19.12
height. When a new observation arises,https://realpython.com/courses/knn-python/continue/#t=23.66
you’ll want to use the information you currently have to make a prediction forhttps://realpython.com/courses/knn-python/continue/#t=27.04
it. k-nearest neighbors can help you make such a prediction,https://realpython.com/courses/knn-python/continue/#t=30.9
and it does so by examining the new data points’ closest neighbors.https://realpython.com/courses/knn-python/continue/#t=34.75
00:39https://realpython.com/courses/knn-python/continue/#t=39.07
It uses known information about those neighbors to help predict an outcome.https://realpython.com/courses/knn-python/continue/#t=39.07
00:46https://realpython.com/courses/knn-python/continue/#t=46.48
But you don’t need to visualize all your data to make kNN work. Instead,https://realpython.com/courses/knn-python/continue/#t=46.48
you can code up your own k-nearest neighbors algorithm using Python.https://realpython.com/courses/knn-python/continue/#t=51.0
00:57https://realpython.com/courses/knn-python/continue/#t=57.86
Here’s what you can expect from this course. After this brief overview,https://realpython.com/courses/knn-python/continue/#t=57.86
you’ll learn what kNN is and what its main features are.https://realpython.com/courses/knn-python/continue/#t=62.5
We’ll use one primary example throughout this course, so you’ll get a sense forhttps://realpython.com/courses/knn-python/continue/#t=66.42
that dataset about sea snails before diving into a clear explanation ofhttps://realpython.com/courses/knn-python/continue/#t=71.01
how the k-nearest neighbors algorithm works. Next,https://realpython.com/courses/knn-python/continue/#t=75.89
you’ll get a chance to code up your own KNN model, first from scratchhttps://realpython.com/courses/knn-python/continue/#t=79.29
and then with the machine learning package scikit-learn. After that,https://realpython.com/courses/knn-python/continue/#t=84.39
we’ll conclude by summarizing the course and reviewing the benefits andhttps://realpython.com/courses/knn-python/continue/#t=89.02
drawbacks of kNN.https://realpython.com/courses/knn-python/continue/#t=92.85
01:34https://realpython.com/courses/knn-python/continue/#t=94.9
So, let’s get started with the distinguishing features of k-nearest neighbors.https://realpython.com/courses/knn-python/continue/#t=94.9
Become a Memberhttps://realpython.com/account/join/
Overviewhttps://realpython.com/courses/knn-python/
https://realpython.com/videos/knn-python-features/
Using k-Nearest Neighbors (kNN) in Python (Overview) 01:41 https://realpython.com/videos/knn-python-overview/
Distinguishing Features of kNN 05:50 https://realpython.com/videos/knn-python-features/
Predicting the Age of Sea Snails 07:40 https://realpython.com/lessons/knn-python-predict/
Understanding How kNN Works 08:59 https://realpython.com/lessons/how-knn-works/
Coding kNN From Scratch: Data and Distances 05:36 https://realpython.com/lessons/knn-data-and-distances/
Coding kNN From Scratch: Neighbors and Predictions 06:10 https://realpython.com/lessons/knn-neighbors-and-predictions/
Using kNN in scikit-learn: Data, Fit, and Predict 09:16 https://realpython.com/lessons/knn-scikit-learn-data-fit-predict/
Using kNN in scikit-learn: Score and Update k 07:15 https://realpython.com/lessons/knn-scikit-learn-score-and-update-k/
Using k-Nearest Neighbors (kNN) in Python (Summary) 04:35 https://realpython.com/lessons/knn-python-summary/
Privacy Policyhttps://realpython.com/privacy-policy/

Viewport: width=device-width, initial-scale=1, shrink-to-fit=no, viewport-fit=cover

Robots: max-image-preview:large


URLs of crawlers that visited me.