Lec-7: kNN Classification with Real Life Example | Movie Imdb Example | Supervised Learning

Gate Smashers
29 Aug 202310:12

Summary

TLDRThe video script is an educational tutorial on machine learning concepts, specifically focusing on classification and regression. It uses examples like predicting movie genres based on IMDb ratings and duration to explain the process of data collection, calculation of Euclidean distance, and the nearest neighbor algorithm. The script emphasizes the importance of understanding the concepts behind machine learning and provides a practical example of classifying a movie into genres like action or comedy.

Takeaways

  • 📚 The video is aimed at explaining machine learning concepts, focusing on numerical examples to help students understand better.
  • 🔢 It emphasizes the importance of taking notes and understanding the mathematical calculations involved in machine learning concepts.
  • 💡 The video discusses classification and regression as two fundamental types of predictions in machine learning, with examples provided.
  • 📈 The Nearest Neighbor algorithm is introduced as a simple yet important algorithm in machine learning, using distance calculations to make predictions.
  • 📝 The process of data collection is highlighted as the first step in making predictions, using real-time data from movies as an example.
  • 🎬 IMDB ratings, duration, and genre are used as data points to demonstrate how to apply machine learning concepts to real-world data.
  • 📊 The Euclidean distance formula is explained in detail to calculate the distance between data points, which is crucial for the Nearest Neighbor algorithm.
  • 📐 The concept of 'k' in k-Nearest Neighbors is explored, discussing how to determine the number of neighbors to consider for a prediction.
  • 🗳️ The video uses a voting system to finalize predictions, illustrating how majority voting can be used in classification tasks.
  • 📝 It stresses the importance of understanding the underlying math behind machine learning to effectively implement algorithms.
  • 🔑 The video concludes by summarizing the key steps in applying machine learning, from data collection to prediction and validation.

Q & A

  • What is the main topic of the video script?

    -The main topic of the video script is explaining the concept of classification and regression in machine learning, using examples like predicting movie genres based on IMDb ratings and duration.

  • What does the speaker suggest students should do while learning machine learning concepts?

    -The speaker suggests that students should take notes while learning machine learning concepts, emphasizing the importance of understanding the mathematical calculations involved.

  • What is the example used to explain the concept of classification?

    -The example used to explain classification is predicting whether an item, like an apple, is a fruit or a vegetable based on certain features.

  • What is the purpose of calculating the Euclidean distance in the context of the video?

    -The purpose of calculating the Euclidean distance is to find the closest point or class in a dataset, which helps in making predictions in classification tasks.

  • How does the speaker describe the process of data collection for the machine learning example?

    -The speaker describes the process of data collection by mentioning the use of real-time data from movies released in 2023, including IMDb ratings, duration, and genres.

  • What is the significance of IMDb ratings and duration in the given machine learning example?

    -IMDb ratings and duration are significant as they are features used to classify or predict the genre of a movie in the machine learning example.

  • What is the method used to calculate the distance between data points in the script?

    -The method used to calculate the distance between data points is the Euclidean distance, calculated using the formula √((x2 - x1)² + (y2 - y1)²).

  • What is the final step in the classification process after calculating distances?

    -The final step is to select the nearest neighbor or class based on the minimum distance calculated, which helps in making the prediction for the classification.

  • How does the speaker address the challenge of selecting the 'k' value in k-nearest neighbors?

    -The speaker suggests taking the best value as low as possible, such as 3 or 4, but not taking 5 due to the limited data available, as it might not always provide the exact solution.

  • What is the importance of majority voting in the context of the k-nearest neighbors algorithm?

    -Majority voting is important as it helps in deciding the final class or genre of the movie by considering the most frequent class among the k-nearest neighbors.

Outlines

00:00

📚 Introduction to Machine Learning Concepts

The speaker welcomes students to a video that aims to explain machine learning concepts, specifically focusing on numerical examples. They emphasize the importance of taking notes and understanding the mathematical calculations involved. The video will cover topics like classification, regression, and nearest neighbor algorithms, using real-world examples such as predicting movie genres based on IMDb ratings, duration, and other features. The speaker encourages students to engage with the content, like, subscribe, and turn on notifications for more informative videos.

05:02

📐 Calculating Euclidean Distance for Classification

In this paragraph, the script delves into the process of calculating Euclidean distance to classify data points, using an example of predicting the genre of a movie based on its IMDb rating and duration. The speaker explains the concept of Euclidean distance by comparing two points in a coordinate system and demonstrates how to calculate it using the formula \( \sqrt{(x2 - x1)^2 + (y2 - y1)^2} \). They apply this method to different movies, calculating the distance of a new movie from known movies to determine its genre. The process involves comparing the calculated distances and selecting the genre with the smallest distance, indicating the closest match. The example illustrates the practical application of the concept in a real-world scenario.

10:02

🔍 Understanding the Basics of Machine Learning

The final paragraph wraps up the video by emphasizing the importance of understanding the basics of machine learning. The speaker mentions that they will gradually cover more complex topics and techniques, but for now, they aim to provide a foundational understanding of how machine learning works, including the various steps involved in the process. They thank the viewers for watching and encourage them to stay tuned for more informative content.

Mindmap

Keywords

💡Machine Learning

Machine Learning is a subset of artificial intelligence that provides systems the ability to learn and improve from experience without being explicitly programmed. In the video, the speaker is discussing various concepts of machine learning, such as classification and regression, to explain how algorithms can predict outcomes based on data.

💡Classification

Classification is a machine learning technique used to predict the category or class of an entity based on its features. The script mentions classification in the context of predicting the genre of a movie, such as whether it falls under action, comedy, or drama.

💡Regression

Regression is another machine learning technique used for predicting a continuous outcome, such as a numeric value. The video script refers to regression in the context of predicting a movie's rating or other numerical attributes.

💡Neural Networks

Neural Networks are a set of algorithms modeled loosely after the human brain that are designed to recognize patterns. The script mentions neural networks as a foundational concept behind machine learning, which the speaker is explaining to the audience.

💡Euclidean Distance

Euclidean Distance is a measure of the straight-line distance between two points in Euclidean space. In the context of the video, Euclidean Distance is used to calculate the similarity between different data points, such as the attributes of various movies.

💡Data Collection

Data Collection is the process of gathering and measuring data from various sources. The script describes the importance of data collection as the first step in the machine learning process, where the speaker collects data on movie ratings, duration, and genres.

💡Feature Selection

Feature Selection is the process of selecting the most relevant features or variables for use in model construction. The video script refers to selecting features like movie ratings and duration as part of the data collection process to make predictions about movie genres.

💡Labeled Data

Labeled Data refers to data that has been assigned a label or category. In the video, the speaker discusses using labeled data to train the machine learning model to make accurate predictions about the genre of a movie.

💡Distance Calculation

Distance Calculation is the process of determining the distance between data points. The script uses the example of calculating the Euclidean distance between different movies' features to find the closest match or genre.

💡Majority Voting

Majority Voting is a method used to make a decision based on the majority opinion. In the context of the video, the speaker uses majority voting to decide on the genre of a movie based on the closest distances calculated from the features.

💡Real-time Data

Real-time Data refers to data that is processed as it is created or received. The script mentions using real-time data from the year 2023 for the movie examples, emphasizing the timeliness and relevance of the data in machine learning.

Highlights

Introduction to explaining K-Nearest Neighbors (KNN) and its application in various competitive exams, college university exams, and interviews.

Emphasis on the importance of taking notes while learning machine learning concepts.

Explanation of the concept behind K-Nearest Neighbors and its implementation.

Discussion on classification and predicting class labels using KNN.

Introduction to the concept of distance calculation in KNN, such as Euclidean distance.

Explanation of how to calculate Euclidean distance between two points.

Description of the process of data collection for prediction tasks.

Use of real-time data from 2023 movies for the example of movie genre prediction.

Discussion on the importance of labeled data in supervised learning for prediction tasks.

Explanation of how to calculate the distance between movie data points for genre prediction.

Process of selecting the nearest neighbors based on the calculated distances.

Discussion on the challenges of determining the value of K in KNN.

Explanation of how to use majority voting to determine the final prediction.

Real-life application example of deciding whether to create a new channel based on voting and KNN.

Highlight of the importance of understanding the concept of KNN with small data before applying it to large datasets.

Discussion on the practical steps involved in implementing KNN, starting from data collection to prediction.

Explanation of how to handle noise in data and its impact on KNN predictions.

Final summary of the key steps and considerations in using KNN for classification tasks.

Transcripts

play00:00

डियर स्टूडेंट वेलकम तू गेट मैसोर्स आज की

play00:02

इस वीडियो में एक्सप्लेन करने जा रहा हूं

play00:03

केएन और इसको मैं विद एग्जांपल विद

play00:06

न्यूमेरिकल एग्जांपल एक्सप्लेन करूंगा तो

play00:08

आपको कहानी पे भी पूछ लेने कॉम्पिटेटिव

play00:10

एग्जाम्स में कॉलेज यूनिवर्सिटी एग्जाम्स

play00:12

में एवं इंटरव्यूज में भी आप इजीली इसका

play00:14

आंसर लिख सकते हो तो गाइज फटाफट से वीडियो

play00:16

को लाइक करते हैं चैनल को सब्सक्राइब करें

play00:17

अगर कंपनी के और अगर कर भी दिया तो और

play00:19

डिवाइस से सब्सक्राइब करवा सकते हो

play00:21

सब्सक्राइब बहुत जरूरी है तो चलिए स्टार्ट

play00:22

करते हैं सबसे पहले और सबसे इंपॉर्टेंट

play00:25

पॉइंट पहले तो जो स्टूडेंट भी मशीन

play00:27

लर्निंग के ये सारे कॉन्सेप्ट्स को पढ़

play00:29

रहे हो तो साथ में कॉपी और पेन जरूर लेकर

play00:32

रखना सारे में में प्वाइंट्स नोट करना

play00:34

क्योंकि जितने भी कॉन्सेप्ट में यहां पे

play00:37

पढ़ा रहा हूं सारे के सारे मैथमेटिक्स के

play00:39

साथ पढ़ा रहा हूं कैलकुलेशन के साथ पढ़ना

play00:41

क्योंकि आपको डायरेक्ट इसकी उसबलिटी ठीक

play00:44

है हम बाद में पाइथन से आर प्रोग्रामिंग

play00:46

से करेंगे लेकिन पहले जो बिहाइंड डी सीन

play00:49

जो मैथ्स है पहले उसको समझ लो जब वो चीज

play00:52

समझ में ए गई फिर आप इजीली इसको

play00:53

इंप्लीमेंट कर सकते हो तो देखो सबसे पहले

play00:55

जो है आपका क्लासिफिकेशन जो है वो जल्दी

play00:57

क्यों उसे करते हैं पर प्रिडिक्टिंग डी

play00:59

क्लासेस और जो आपका रिग्रेशन है वो उसे

play01:01

किया जाता है पर प्रिडिक्टिंग डी वालुज तो

play01:03

यहां पे जो कन और एल्गोरिथम है डेट इस के

play01:06

नियरेस्ट नी एल्गोरिथम तो ये एक तरह से आप

play01:09

का सकते हो आईटी इस लाइक एन हेलो शब्द

play01:11

प्रोग्राम पर डी क्लासिफिकेशन मतलब ये एक

play01:14

तरह से हेलो शब्द प्रोग्राम की तरह की जब

play01:16

भी आपने क्लासिफिकेशन को अच्छे से सीखना

play01:18

है तो स्टार्टिंग में यहां पर के एन एन सी

play01:20

को एजी टेलीग्राम में बड़ा सिंपल सा

play01:22

एल्गोरिथम है लेकिन बड़ा इंपॉर्टेंट है तो

play01:24

देखो इसका जो क्रैकर्स मैं आपको बताता हूं

play01:26

एक्चुअल में क्या है इसका मतलब क्या है ये

play01:28

जो नेरिस्ट नी का मतलब पता है क्या है

play01:30

जैसे पर एग्जांपल मैंने कोई डिसीजन लेना

play01:32

है तो आपको क्लासिफिकेशन का मतलब तो पता

play01:34

लगेगा या तो ये या ये जैसे कैटिगरी हम

play01:37

कहते हैं ना की आपको कोई पर एग्जांपल मैं

play01:39

पूछूं की एप्पल अगर आपको मैं दे डन

play01:41

क्योंकि क्या ये फ्रूट है या ये वेजिटेबल

play01:43

है मतलब आपको प्रिडिक्ट करना है की ये किस

play01:46

क्लास में जाएगा बस वो चीज है तो यहां पे

play01:49

लेट फोर्स मुझे ये चेक करना है की क्या

play01:51

मुझे एक नया चैनल बनाना चाहिए तो इसके लिए

play01:53

मैंने क्या किया आपने जो नेरिस्ट नी

play01:55

नेरिस्ट नी का मतलब क्या है की जो मेरे

play01:57

बिल्कुल खास खास बंदे हैं पास में

play02:00

उनसे मैंने एक तरह से वोटिंग ली तो उसे

play02:02

वोटिंग के बेसिस पे मैं फाइनलाइज कर रहा

play02:04

हूं की मेरे को ये डिसीजन लेना चाहिए हां

play02:06

मेरे को चैनल बनाना चाहिए या नहीं मेरे को

play02:08

चैनल नहीं बनाना चाहिए तो ये एक तरह से

play02:10

क्लासिफिकेशन है नेरिस्ट नेबर्स के बेसिस

play02:13

पे तो यहां पे डिस्टेंस जो है वो कैलकुलेट

play02:16

करना होता है और इस के बेसिस पर हम पता

play02:18

करते हैं की नेरिस्ट कौन है मेरे एग्जांपल

play02:20

के साथ बताऊंगा डोंट वारी आप इजीली सारे

play02:23

प्वाइंट्स को समझोगे बस नोट करते जाना

play02:24

एग्जांपल ले रहे हैं हम प्रिडिक्टिंग मूवी

play02:27

जेनरेट मतलब मूवी की जनरली अगर मुझे पता

play02:29

करनी है की यार मेरी मूवी है वो मूवी के

play02:32

अलग-अलग जेनरेशन होती है जैसे ड्रामा मूवी

play02:34

हो शक्ति है एक्शन मूवी हो शक्ति है हॉरर

play02:35

मूवी हो शक्ति है तो मुझे प्रिडिक्ट करना

play02:37

है किसी मूवी का की क्या यह किसके किस जनर

play02:40

के अंदर आई है लेकिन उसमें सबसे पहले

play02:42

स्टेप क्या है डाटा कलेक्शन सबसे पहले

play02:45

आपको डाटा को कलेक्शन करना पड़ता है

play02:46

प्रिडिक्शन तो बाद में होती है सबसे पहले

play02:48

डाटा को कलेक्ट किया एग्जांपल के तोर पे

play02:51

वैसे तो रियल वर्ल्ड में बहुत ह्यूज

play02:53

अमाउंट ऑफ डाटा बिग डाटा लेते हैं लेकिन

play02:55

यहां पे जस्ट आपको समझा रहा हूं कॉन्सेप्ट

play02:57

क्योंकि जब कॉन्सेप्ट आपको छोटे डाटा पे

play02:59

समझ में ए गया बड़े पे भी आपको ए ही जाएगा

play03:01

तो देखो यहां पे मैंने डाटा क्या लिया

play03:04

मैंने यहां पे आईएमडीबी रेटिंग ली

play03:06

ड्यूरेशनली और जनरली मैंने कुछ डाटा उठाया

play03:09

और ये डाटा रियल टाइम डाटा ही है अभी 2023

play03:12

की मूवी ही है उन्हें का डाटा उठाया तो

play03:14

यहां पे आईएमडीबी है 8.0 मिशन इंपॉसिबल

play03:16

एक्यूरेट है उसका जेनरेट एक्शन है वैसे कई

play03:19

बार जेनरेट मल्टीपल भी होते हैं एक्शन भी

play03:21

होता है कई बार कॉमेडी भी होता है बट आप

play03:22

ज्यादा दीप में ना घुसो आप में कॉन्सेप्ट

play03:25

को समझो की क्या मैं बताना छह रहा हूं गदर

play03:27

तू लिए 6.2 आईएमडीबी है एक्चुअल में जो

play03:30

डाटा आईएमडीबी की वेबसाइट पे वहीं से

play03:31

उठाया मैंने ड्यूरेशन और एक्शन ले लिया

play03:34

रॉकी और रानी 7.2 ये इसकी ड्यूरेशन है ये

play03:37

कॉमेडी ले ली और यहां पे ओ मी गॉड तू इसकी

play03:40

ये आपकी जो है वो आईएमडीबी रेटिंग

play03:41

ड्यूरेशन और इसका जेनरेट को मीडिया ऐसे

play03:44

मल्टीपल जर्नलिस्ट का ड्रामा भी है कॉमेडी

play03:45

भी है बट मैंने इसको कॉमेडी में रखा है

play03:47

जस्ट आपको कॉन्सेप्ट को समझने के लिए तो

play03:49

ये मेरा एक तरह से पहले डाटा कलेक्शन हो

play03:52

गया मैं पहले डाटा को कलेक्ट करूंगा क्लीन

play03:54

करता हूं ये सारे कॉन्सेप्ट उसके बाद में

play03:56

ट्रेनिंग पे आता हूं तो यहां पे सबसे पहले

play03:58

मैंने ये किया अब उसके बाद मुझे पता है की

play04:01

प्रिडिक्ट करो जनरल ऑफ बार्बी मूवी एक

play04:03

मूवी आई है बार्बी मूवी जिसकी रेटिंग है

play04:06

7.4 और ड्यूरेशन है 114 मिनट तो बताओ वो

play04:10

किस जेनरेट के अंदर आएगी बेस रंग दिस डाटा

play04:13

वही हो गया ना आपका की पहले हमने डाटा

play04:15

दिया लेबल्ड डाटा बता दिया क्योंकि यह

play04:17

आपका सुपर लर्निंग है तो पहले लेबल्ड डाटा

play04:19

दिया और उसके बेसिस पे मैंने लेबल्ड डाटा

play04:22

ही दोबारा देना है प्रिडिक्शन के तोर पे

play04:24

और फिर चेक करना है की क्या मेरा ये इसके

play04:28

अंदर आता है या इसके अंदर आता है एक तरह

play04:29

से मतलब क्लासिफिकेशन करनी है ना की क्या

play04:31

ये एक्शन के अंदर आई है या कॉमेडी के अंदर

play04:33

आई है तो ये मेरा एक तरह से सिनेरियो बन

play04:36

गया अब आप करते हैं जी कैलकुलेशन

play04:39

मठ उसके बिना तो कहानी होगी नहीं समझ में

play04:42

आएगी नहीं तो सबसे पहले स्टेप क्या है

play04:44

कैलकुलेट डी डिस्टेंस तो पहले स्टेप क्या

play04:46

है मेरे को डिस्टेंस कैलकुलेट करना है और

play04:48

यहां पे हम कौन सा मेथड उसे करेंगे ये

play04:51

सीडी और डिस्टेंस का मेथड उसे करेंगे

play04:53

लिस्टेड डिस्टेंस बड़ा सिंपल सा कॉन्सेप्ट

play04:55

है अगर आपको स्ट्रेट लाइन डिस्टेंस पता

play04:57

करना है दो चीजों के बीच में जैसे पर

play04:59

एग्जांपल के तोर पे ये मेरा एक्स एक्सिस

play05:01

है ये मेरा ए एक्सिस है यहां पे लेट पोस्ट

play05:04

एक पॉइंट है मेरा पी और यहां पे लेट पोस्ट

play05:06

एक पॉइंट है मेरा के अब इन दोनों

play05:08

प्वाइंट्स के बीच में अगर मुझे डिस्टेंस

play05:10

स्ट्रेट लाइन डिस्टेंस अगर फाइंड आउट करना

play05:13

है लेट पोस्ट दी तो कैसे फाइंड आउट करूंगा

play05:15

तो देखो इस पी के कॉरस्पॉडेंट वहां पर एक

play05:17

वैल्यू होगी x1 और यहां पर एक वैल्यू होगी

play05:19

y1 ऐसी यहां पे एक वैल्यू क्या होगी x2 और

play05:22

यहां पे एक वैल्यू क्या होगी y2 ठीक है आप

play05:24

यहां पे लिख सकते हो ये आपका y1 y2 तो ये

play05:27

देखो यहां पे एक तरह से इस पी की

play05:28

कॉरस्पॉडिंग मेरे पास ये x1 वैल्यू एक y1

play05:30

और के के कॉरस्पॉडिंग एक्स तू है और एक y2

play05:33

तो डिस्टेंस कैसे कैलकुलेट करते हैं

play05:35

लूसीड़न x2 - x1 का होल स्क्वायर प्लस y2

play05:41

- y1 का होल स्क्वायर और स्क्वायर रूट तो

play05:45

ये मेरा डिस्टेंस ए जाता है जी पी और के

play05:49

के बीच का तो ये डिसाइड डिस्टेंस इस तरीके

play05:51

से कैलकुलेट किया जाता है तो अब आपका यही

play05:53

मेथड यहां पे लगाते हैं तो यहां पे कैसे

play05:55

लगाओगे हमें पता है की जो मेरे को दिया है

play05:58

मेरे को क्या दिया हुआ है की जो मेरा

play06:00

प्रिडिक्ट करना बाहर भी मूवी उसके

play06:01

आईएमडीबी है 7.4 और ड्यूरेशन 14 तो

play06:04

आईएमडीबी क्या है 7.4 और ड्यूरेशन क्या है

play06:07

114 अब देखो सबसे पहले मूवी मेरी जो थी

play06:10

मिशन इंपॉसिबल उसमें क्या थी आईएमडीबी 8

play06:13

और ड्यूरेशन ये तो ये मेरा एक तरह से x1

play06:16

x2 हो गया x1 y1 x2 y2 तो बस इस के हिसाब

play06:19

से उठाते हैं तो 7.4 - 8 किया मतलब ये

play06:24

देखो ना ये मेरा एक तरह से आप का सकते हो

play06:25

की ये मेरा लेट पोस्ट x2 है ये मेरा x1 है

play06:28

और ये मेरा y2 है ये मेरा ए है ठीक है तो

play06:32

यहां पे देखो आते या उल्टा भी कर सकते हो

play06:34

क्योंकि स्क्वायर करोगे तो आंसर जो है वो

play06:36

आपका से ही आएगा क्योंकि माइंस में भी आता

play06:39

है तो स्क्वायर उसको प्लस कर देगा तो देखो

play06:40

यहां पे 7.4 - 8² + 14 - 6 और 8 का

play06:45

स्क्वायर और इसका होल रूट मैंने यहां पे

play06:48

स्क्वायर रूट यहां पे मैंने ले लिया तो ये

play06:49

वैल्यू मेरी कुछ ए गई ये मैंने कैलकुलेट

play06:52

कर राखी है जस्ट टाइम को से करने के लिए

play06:53

मैंने फटाफट से करवा रहा हूं तो ये मैंने

play06:55

वैल्यू जो है वो कैलकुलेट कर ली उसके बाद

play06:57

डिस्टेंस दूसरी मूवी मैंने उठाई और दूसरी

play06:59

मूवी के हिसाब से जो भी मेरा आईएमडीबी था

play07:02

और ये और ये वैल्यू तो मेरी फिक्स सी है

play07:04

12वीं वाली तो ये माइंस ये किया और ये

play07:06

माइंस ये किया तो यहां पे मेरे को वैल्यू

play07:08

ए गई तीसरी मूवी के हिसाब से मैंने 7.2168

play07:11

और यहां पे मेरा 7.4 - 7.2 का स्क्वायर

play07:14

114 -

play07:16

68 का स्क्वायर

play07:19

थी तो उसके हिसाब से 7.4 - 8.2 का

play07:23

स्क्वायर 114 - 155 का स्क्वायर होल हो

play07:27

यहां पे मैंने स्क्वायर रूट ले लिया और ये

play07:29

मेरी वैल्यू ए गई तो ये लुसिडियन डिस्टेंस

play07:30

जो है वो इसके बेसिस पे चारों अलग-अलग

play07:33

मूवी का कैलकुलेट कर लिया हो गया अब क्या

play07:36

करना है कम हो गया अब कम क्या करना है आप

play07:39

लास्ट में सिलेक्ट के नेरिस्ट नी सबसे

play07:41

पहले अगर मैं लेट पोस्ट मैं चेक करूं की

play07:43

मेरा के = 1 मतलब ए की नी में चेक करूं की

play07:47

सबसे नेरिस्ट बता दो मेरे को कौन है तो

play07:49

डिस्टेंस देखो सबसे नहीं रे मतलब सबसे कम

play07:51

डिस्टेंस कौन सा है आउट ऑफ डीज जो सबसे कम

play07:54

डिस्टेंस कॉन्सेप्ट 41 तो 41 जो था वो

play07:58

आपका किसका था 41 जो था वो आपका लास्ट

play08:00

वाला किसका था ओ मी गॉड और इसका जनरली

play08:03

क्या है कॉमेडी तो इससे आप ये पता कर सकते

play08:05

हो प्रेरित हो गया की 12वीं मूवी का जो

play08:07

जेनरेशन है वो क्या है कॉमेडी और वाकई में

play08:10

वैसे ये कॉमेडी में ही आता है तो मैंने

play08:12

रियल टाइम एग्जांपल ही लिए रियल डाटा ये

play08:15

उठाया कोई फेक डाटा है तो लो जी यहां पर

play08:17

के इस इक्वल तू वन से मेरे को पता ग गया

play08:19

ये तो बड़ा बेस्ट कैसे है लेकिन रियल लाइफ

play08:22

में आप के = 1 के इक्वल तू तू से जल्दी

play08:25

नहीं पता लगता क्योंकि नॉइसी डाटा होता है

play08:27

तो आप जनरली नहीं पता लगा सकते वैसे तो

play08:29

बेस्ट है की वैल्यू को कम से कम 5 लो 4 या

play08:33

5 लो| लेकिन यहां पे फोर फाइव तो ले नहीं

play08:35

सकते क्योंकि हमने डाटा कम है बट मैं के

play08:37

की वैल्यू को थ्री ले लेट हूं यही तो सबसे

play08:41

में चीज है की आप कैसे इसकी वैल्यू को

play08:43

तूने करते हो के की वैल्यू को तूने करना

play08:44

है या अपने आप में मेजर चैलेंज है बट फिर

play08:47

भी के की वैल्यू फाइव जो है वो सूटेबल

play08:49

होती है बट यहां पे फाइव तो ली नहीं जा

play08:51

शक्ति क्योंकि डाटा ही मेरा कम है बट एट

play08:53

लिस्ट थ्री लो थोड़ा ज्यादा ले लेते हैं

play08:55

क्योंकि वन से कई बार एग्जैक्ट सॉल्यूशन

play08:57

नहीं निकलता है इसमें हालांकि निकाल गया

play08:58

लेकिन फिर भी कई बार नहीं भी निकलता है तो

play09:01

क्या इस इक्वल तू थ्री थ्री वालुज ले लो 3

play09:03

मतलब एक तरह से 3 नेरिस्ट नी उठा लो तो

play09:06

थ्री नेरिस्ट नेवर कौन से है एक तो ये

play09:08

निकलेगा एक ये निकलेगा और एक ये निकलेगा

play09:10

56 सबसे दूर वाला है तो इसको हटा दो तो

play09:13

देख लो 46 पहले वाला तीसरा

play09:16

नंबर चौथ तो देख लो पहले तीसरा चौथ किसका

play09:18

है पहले तीसरा और चौथ तो यानी एक्शन

play09:22

कॉमेडी तो यानी के की वैल्यू थ्री में भी

play09:24

ए गई उसके हिसाब से एक्शन कॉमेडी कॉमेडी

play09:26

तो लास्ट में क्या करना है आपको मेजॉरिटी

play09:29

वोटिंग तो एक्शन कॉमेडी कॉमेडी मतलब तीन

play09:32

मैंने यहां पे वोट लिए जिसमें से दो वोट

play09:34

क्या का रहे हैं कॉमेडी तो यानी बार्बी

play09:36

मूवी जो है वो कॉमेडी के अंदर आई है तो

play09:38

यानी ये बिल्कुल ठीक यहां पे मेरा

play09:40

प्रॉपरली क कर रहा है ओरिजिनल डाटा पे ही

play09:42

मैंने कम किया है तो इस तरीके से केएन जो

play09:45

है वो क करता है लेसिडियन डिस्टेंस को उसे

play09:48

करके वैसे मैनहैटन डिस्टेंस को भी उसे

play09:50

करता है लेकिन लूसीडें जो है वो स्ट्रेट

play09:52

लाइन डिस्टेंस जो है वो इजी मेथड है फाइंड

play09:54

आउट करने का और ये एक सिंपल सा बेस्ट

play09:57

एग्जांपल लिया आपके लिए ताकि आप इजीली

play09:59

आंसर दे सकते हो रियल शब्द में डाटा आपका

play10:01

बहुत बड़ा होता है उसको क्लीन करना पड़ता

play10:03

है आउटलेट्स होते हैं वो धीरे-धीरे हम

play10:05

करेंगे बट आपको एक बेसिक अंडरस्टैंडिंग

play10:07

होगी केएन कैसे क करता है व्हाट आर डी

play10:09

वेरियस स्टेप्स थैंक यू

Rate This

5.0 / 5 (0 votes)

Связанные теги
Machine LearningClassificationPredictionVideo TutorialData CollectionDistance CalculationNeural NetworksMovie GenresIMDb RatingsEducational ContentTechnical Analysis
Вам нужно краткое изложение на английском?