Batch Machine Learning | Offline Vs Online Learning | Machine Learning Types

CampusX
17 Mar 202111:28

Summary

TLDRThis YouTube video discusses machine learning deployment, comparing batch and online learning. Batch learning involves training models offline with complete data sets, while online learning adapts to new data in real-time. The video highlights challenges like model state maintenance, data updates, and the need for frequent retraining to stay relevant, emphasizing the importance of continuous learning to provide accurate recommendations and predictions.

Takeaways

  • 😀 The video discusses the transition of machine learning models from development to production environments.
  • 🔄 It explains the concept of batch learning versus online learning, highlighting the differences in how models are trained and updated.
  • 💾 Batch learning involves training models on entire datasets offline, while online learning adapts models incrementally with new data.
  • 🌐 The video touches on the importance of deploying machine learning models to servers so they can process customer requests in real-time.
  • 📈 It emphasizes the need for models to continuously learn and adapt to new data to remain relevant and accurate.
  • 🚀 The speaker discusses the challenges of updating models with new data, including the time and computational costs associated with retraining.
  • 🔒 The video mentions the limitations of batch learning, such as the inability to update models frequently, which can lead to outdated recommendations.
  • 🌟 It points out the advantages of online learning, which can provide more up-to-date recommendations by continuously incorporating new data.
  • 📉 The script also addresses potential issues with model staleness, where a model may become less effective over time if it's not updated regularly.
  • 🛠️ Lastly, it talks about the technical challenges of implementing machine learning systems, such as the need for robust hardware and the ability to process large amounts of data.

Q & A

  • What is the main topic discussed in the script?

    -The main topic discussed in the script is machine learning, specifically focusing on the types of machine learning, the process of training models, and the differences between batch and online learning.

  • What is the difference between batch learning and online learning mentioned in the script?

    -Batch learning involves training the model offline with the entire dataset, while online learning involves training the model incrementally with small chunks of data in real-time.

  • What is the importance of deploying machine learning models to a server as discussed in the script?

    -Deploying machine learning models to a server allows the model to be accessible to customers and to provide answers to their queries, which is essential for practical application and real-world use.

  • Why is it necessary to update machine learning models regularly?

    -Regular updates to machine learning models are necessary to ensure that they remain accurate and relevant as new data becomes available and as the underlying patterns in the data evolve over time.

  • What are the challenges associated with batch learning when dealing with large datasets?

    -The challenges with batch learning include the high computational cost, time consumption, and the potential for the model to become outdated quickly if the data changes significantly.

  • How does the script describe the process of training a machine learning model?

    -The script describes the process of training a machine learning model as involving coding, deploying the model on a server, and then using the trained model to make predictions in a production environment.

  • What is the significance of the term 'production' in the context of machine learning models as mentioned in the script?

    -In the context of machine learning, 'production' refers to the stage where a trained model is deployed and used to make predictions in a live environment, serving real users.

  • What is the potential issue with machine learning models that are not updated frequently?

    -Machine learning models that are not updated frequently may become outdated and may not reflect the latest trends or data, leading to decreased accuracy and relevance.

  • What is the role of incremental training in online learning as discussed in the script?

    -Incremental training in online learning refers to the process of updating the model with new data as it becomes available, allowing the model to adapt and learn continuously from new information.

  • What are the potential disadvantages of batch learning highlighted in the script?

    -The potential disadvantages of batch learning highlighted in the script include the inability to adapt quickly to new data, the high computational cost for large datasets, and the risk of the model becoming outdated if not updated frequently.

  • How does the script suggest dealing with the need for frequent updates in machine learning models?

    -The script suggests that dealing with the need for frequent updates involves a continuous cycle of training the model with new data, testing, and redeploying it to the server to ensure it remains accurate and up-to-date.

Outlines

00:00

🌐 Online Machine Learning Deployment

The paragraph discusses the process of deploying machine learning models online. It covers the transition from development to production environments, emphasizing the importance of training models with sufficient data and the challenges of managing model performance over time. The speaker introduces the concepts of batch and online learning, explaining how models behave differently when trained on entire datasets versus receiving data incrementally. The summary also touches on the practical aspects of machine learning deployment, such as the need for continuous model updates to maintain relevance and the potential issues with model staleness if updates are not frequent enough.

05:02

🔄 Continuous Model Training and Updates

This section of the script focuses on the necessity of continuously training machine learning models with new data to keep the recommendations and predictions relevant. It highlights the challenges of maintaining model accuracy as market dynamics and user interests evolve. The speaker discusses the importance of retraining models with updated data to avoid becoming obsolete and the potential for models to lose effectiveness if they are not regularly updated. The summary also mentions the technical and logistical issues that can arise from attempting to update models too frequently, such as data processing limitations and the need for stable internet connectivity.

10:03

📅 Real-time Data Impact on Machine Learning

The final paragraph in the script addresses the impact of real-time data on machine learning models, particularly in the context of recommendation systems. It discusses how timely updates to models are crucial for reflecting current trends and user interests. The speaker uses the example of a social networking site that generates recommendations based on user interests, but faces challenges when new, trending topics emerge that the model has not been trained on. The summary emphasizes the need for models to be responsive to immediate changes in data and the potential for outdated models to provide irrelevant or less valuable recommendations.

Mindmap

Keywords

💡Machine Learning

Machine Learning is a subset of artificial intelligence that provides systems the ability to automatically learn and improve from experience without being explicitly programmed. In the context of the video, it refers to the process of developing algorithms that enable computers to learn from data, identify patterns, and make decisions with minimal human intervention. The script discusses various aspects of machine learning such as batch learning and online learning.

💡Batch Learning

Batch learning, also known as offline learning, is a type of machine learning where the model is trained on the entire dataset at once. This method is typically used when the dataset is static and doesn't change often. The script mentions batch learning in the context of training a machine learning model on a local machine using all available data, which is then deployed to a server.

💡Online Learning

Online learning, also known as incremental learning, is a machine learning approach where the model updates its knowledge incrementally as new data becomes available. This is in contrast to batch learning and is useful for systems that need to adapt to changing data over time. The script discusses the importance of online learning for systems that require real-time updates and adaptability to new data.

💡Supervised Learning

Supervised learning is a type of machine learning where the model is trained on labeled data. This means that the input data is paired with the correct output, which the model uses to learn the mapping function. The script refers to supervised learning when discussing the training of machine learning algorithms, which require a large amount of labeled data to learn from.

💡Unsupervised Learning

Unsupervised learning is a type of machine learning where the model is trained on unlabeled data. Unlike supervised learning, there is no correct output provided, and the model must find patterns in the data on its own. The script touches on unsupervised learning as a method where models can learn from data without explicit guidance, which is useful for tasks like clustering and association.

💡Model Deployment

Model deployment is the process of putting a trained machine learning model into a production environment where it can be used to make predictions or decisions. The script discusses deploying models to servers, emphasizing the importance of making models accessible to users via the internet and ensuring they can provide answers to queries.

💡Data Preprocessing

Data preprocessing is the initial step in the data mining process where raw data is transformed and reduced to improve the efficiency of data mining models. The script mentions preprocessing in the context of preparing data for training machine learning models, highlighting the importance of cleaning and structuring data before it can be used effectively.

💡Feature Engineering

Feature engineering is the process of using domain knowledge to select or construct features and variables that make machine learning algorithms work. The script implies feature engineering when discussing how to prepare data for training, suggesting that selecting the right features from the data can significantly impact the performance of machine learning models.

💡Recommendation Engine

A recommendation engine is a software system that makes predictions about the interests of a user by analyzing their preferences and recommending products or services accordingly. The script discusses the creation of a recommendation engine that uses machine learning to suggest movies to users based on their viewing history, illustrating the application of machine learning in personalized content delivery.

💡Overfitting

Overfitting occurs when a machine learning model learns the detail and noise in the training data to the extent that it negatively impacts the performance of the model on new data. The script warns about the risk of overfitting, emphasizing the need to ensure that models generalize well to new, unseen data, rather than just memorizing the training data.

💡Data Drift

Data drift, also known as concept drift, is a phenomenon where the statistical properties of the target variables in a data stream change over time. The script mentions data drift in the context of updating machine learning models, highlighting the need to retrain models with new data to ensure they remain accurate and relevant.

Highlights

Introduction to the YouTube channel and the topic of machine learning.

Discussion on types of pollution in machine learning based on the amount of supervision.

Explaining the concept of a supervisor and semi-supervised reinforcement.

The importance of understanding how machine learning models are trained.

Defining production and the process of deploying machine learning models.

The role of servers in hosting and running machine learning models.

Differences in behavior of machine learning software when deployed on servers.

Introduction to the concepts of batch and online learning.

Batch learning involves training on the entire dataset at once.

Incremental training involves training in small batches or increments.

Challenges with batch learning when dealing with large datasets.

The process of deploying a trained model to production.

The need for continuous learning and updating models with new data.

Discussing the disadvantages of batch learning, especially with large datasets.

The importance of model state and the need to retrain models with new data.

The concept of model availability and the challenges of updating models in real-time.

The need for frequent updates to machine learning models to stay relevant.

The issue of model training being time-consuming and the impact on deployment.

The problem of model obsolescence if not updated regularly.

The process of retraining models with new data and redeploying them.

The cycle of continuous learning and model updates.

The disadvantages of batch learning, including the inability to handle real-time data.

The importance of incremental learning and its advantages over batch learning.

The practical applications of online learning in real-world scenarios.

Transcripts

play00:00

हेलो हेलो गाइस वेलकम टू माय YouTube चैनल

play00:02

इट्स कैंडिडेट फॉर मशीन लर्निंग MB टू डेज

play00:05

बिफोर एंड टुडे वे विल डिसकस वन व्हो टेक

play00:08

एंड इट इज बैक वर्सेस ऑनलाइन फ्लोरिंग ओके

play00:12

102 पिछले वीडियो में हमने टाइप्स ऑफ

play00:15

पोलूशन इन थोड़ा सा जहां पर हमने डिफरेंट

play00:18

टाइप्स देखे थे मशीन लगने के ऑन द बेसिस

play00:20

ऑफ अमाउंट आफ सुपर विजन रिक्वेस्ट ड्रेन

play00:23

मशीन लर्निंग एल्गोरिदम प्राइड तो हमने कल

play00:26

अलग टाइप से एक है सुपरवाइजर सुपरवाइजर

play00:28

सेमी सुपरवाइजर रिइंफोर्समेंट आज भी हम

play00:31

लोग टाइप्स ऑफ मशीन लर्निंग पढ़ने वाले

play00:33

हैं बट जॉन टाइप डिस्कस करेंगे वहीं

play00:36

कंपलीटली डिफरेंट चीज के ऊपर बेस्ट होगा

play00:38

ठीक है तो आज उनको टाइप्स पढ़ने वाले मशीन

play00:41

लर्निंग के वह इस चीज पर डिपेंड करता है

play00:43

कि मशीन लर्निंग मॉडल ट्रेन कैसे होता है

play00:46

क्वेश्चन प्रोडक्शन में ट्राइड नाउ यू

play00:50

माइट थिंक प्रोडक्शन क्या होता है तो

play00:52

लेकिन फस डिफाइन व्हाट इस प्रोडक्शन इन

play00:54

सिंपल टर्म्स प्रोडक्शन इस बेसिकली 10 रौल

play00:57

विंची कोड इस गोइंग टू रंग ठीक है

play01:00

कि आप कोई सॉफ्टवेयर बनाते हो तो वह आपके

play01:03

मशीन पर बैठा रहता वह आपके कस्टमर्स के

play01:06

पास जाना चाहिए और उसका एक ही तरीका है कि

play01:09

आप अपने कोड को किसी सर्वर पर रन कराओ

play01:10

जिसका आईपी एड्रेस आपके कस्टमर्स के पास

play01:13

होगा वह साइटिड एस कट करेंगे और आपके

play01:15

क्वेश्चन का आंसर कर पाएंगे मशीन लर्निंग

play01:17

इसमें डिफरेंट जब आप मशीन लर्निंग ए शॉर्ट

play01:19

ड्रेस बनाते हो तो आप उसको भी सर्वर पर

play01:22

रिप्लाई कर दो और जो सरवर करें एनरोलमेंट

play01:25

है जहां पर आपका को ग्रैंड कर रहा है उसको

play01:28

प्रोडक्शन वारंट बोलते हैं जब आप उसको कॉल

play01:30

करो कि मशीन को डेवलपमेंट एनवायरमेंट

play01:32

बोलते हैं ठीक है ना वह मशीन लर्निंग के

play01:35

जो सॉफ्टवेयर होते हैं या मशीन लर्निंग

play01:37

होता है वह सर्वर पर अलग अलग ढंग से बिहेव

play01:41

करता है या अलग ढंग से चलता है ठीक है उसी

play01:43

के बेसिस पर हम लोग दो डिफरेंट टाइप्स आफ

play01:45

पढ़ने वाले मशीन लर्निंग है वह मैं सब

play01:48

एक्स लर्निंग या फिर बैक मशीन लर्निंग यह

play01:51

उम्र ऑफलाइन लर्निंग बोलते हैं जैसे कि

play01:53

मैंने इस ऑनलाइन मशीन लर्निंग या फिर

play01:55

ऑनलाइन लर्निंग ठीक है तो इन दोनों को मैं

play01:57

बहुत डिटेल में पढ़ेंगे और चुकी टू बी

play02:00

कि यह इंपोर्टेंट है क्योंकि एडिटर एंड

play02:02

ऑप्शन मशीन लर्निंग मॉडल बनाकर फिर मशीन

play02:05

पर ही रखने वाले अपने कंप्यूटर में रहने

play02:06

वाले आप उसको सर्वर पर अपलोड करो सो ठाट

play02:08

आईटी कैन यू है तो आपको आईडिया होना चाहिए

play02:11

कि बैक और ऑनलाइन लर्निंग में क्या

play02:13

डिफ्रेंस ठीक है तो अब डिसाइड व्हाट नऊ

play02:17

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

play02:20

व्हाट इज बैक लर्निंग ट्यूब्स लर्निंग इज

play02:23

द कन्वेंशनल रिलीफ ट्रेनिंग व मशीनरी मॉडल

play02:27

जहां व्याख्या करते हो आप पूरे के पूरे

play02:29

डाटा को एक हाथ यूज करते हो मशीन लर्निंग

play02:32

को ट्रेंड करने के लिए मशीन लर्निंग

play02:33

वॉर्डन को ट्रेंड करने के लिए मतलब बैच के

play02:36

देश में जब आप ट्रेनिंग करवाते हो तो आप

play02:38

अपने पूरे डाटा को यूटिलाइज कर दो दर्जनों

play02:41

इंक्रीमेंटल ट्रेनिंग इंक्रीमेंट देने का

play02:43

मतलब आप छोटे-छोटे टुकड़ों में ट्रेन

play02:45

कराते आप पूरे के पूरे लौट के साथ प्रेम

play02:48

करते हो ठीक है अब सिर्फ जो डाटा होता है

play02:52

जनरल अगर आप इस सीरियल में प्रॉब्लम होकर

play02:54

काम कर रहे हो तो डाटा जो वह बड़ा होगा जब

play02:57

भी पढ़ाई होता है तो बहुत बड़ा बेटा को

play03:00

कि अगर आप सर्वर पर ट्रेंड करने जाओ लोड

play03:02

कर सकते ऐसा बड़ा सा कोई करता नहीं है

play03:04

क्योंकि चिट्ठी कोस्टली एंड टाइम टेकिंग

play03:06

तो जनरली जो बैचलर इन होता है जहां पर

play03:10

पूरे लीटर के साथ एक ट्रेन कर रहे हो वह

play03:12

आप ऑफलाइन करते हो अपने मशीन पर डाटा

play03:14

साइंटिस्ट मशीन गन इंजीनियर उसको अपने

play03:16

मशीन पर ट्रेंड करता है और जब वह मॉडल

play03:18

ट्रेन हो जाता है तो जो सीखा हुआ मॉडल है

play03:20

उसको था कि आप प्रोडक्ट डालते हो तो दिस

play03:23

इस कॉर्ड बैक्स लर्निंग वह यू टेक यू

play03:27

इंसाइड ए आर यू ट्रेन यह मशीन लर्निंग मॉड

play03:30

ऑन ऑफ लाइन सिस्टम एंड m10 मॉडल्स ट्रेंड

play03:33

दी डिपॉजिट और दोसर दिस इज द डांस फ्लोर

play03:37

ऑफ बिर्थ लर्निंग आलथॉ यू सो होता क्या है

play03:41

बहुत सिंपल आपके पास डाटा है जैसे जो डाटा

play03:47

कि एंड एवरीवन मॉडल टाइट आप अपने मीना

play03:51

कुमारी को डालते हो मॉडल ट्रेन हो सकते

play03:53

हैं ट्रेन होने के बाद यू टेस्ट अवार्ड यू

play03:57

जस्ट 20 चोर की जो मैंने क्रीम किया है वह

play04:00

सही है कि नहीं वंश यो यो पुट्टिना सरवर

play04:03

नीर व सेकंड हैंड ओवर थे और आपका मशीन

play04:09

लर्निंग मॉडल रन करता रहेगा जब भी यूजर

play04:12

कुछ भी डेटा देगा आपका मशीन लर्निंग मॉड

play04:14

ऑन करते रहता है कूलिंग मतलब प्लेट से आप

play04:18

नेट पैक में बावजूद और आपको इट्स

play04:19

रिकमेंडेशन इंजन बनाना है जो यूजर्स को

play04:21

होगी सेलेक्ट करें करके बताएं ठीक है फिर

play04:24

नाच कि आप क्या करोगे वह पिग्मेंटेशन इंजन

play04:26

को ट्रेन करूं अपने मशीन पर और उठाकर

play04:28

नेक्स्ट के सर्वर पर डाल दोगे जहां पर यह

play04:30

नज़र आएंगे तो आपका सिस्टम ऑटोमेटिकली

play04:33

उनको मूवी सजेस्ट करता रहेगा तो राइट बट

play04:36

आईएस आपको इस चीज में एक प्रॉब्लम समझ में

play04:39

आ रहा होगा इस चीज का प्रॉब्लम यह है कि

play04:42

आप का मॉडल स्टेट है जब एक बार सीख गया

play04:46

आपको सीपियां वह कुछ

play04:47

ठीक है उसके बाद वह पुरानी चीजों के ऊपर

play04:49

ही काम कर रहा है बट प्रॉब्लम दत्त दर्शक

play04:52

प्रोसेस कि आपका जो बिजनेस सिनेरियो है वह

play04:55

वॉल्व करते रहते हैं ए गुड मॉर्निंग

play04:57

कंपलेक्सेस अब बात कर रहे हैं नेक्स्ट कि

play04:59

आपने रिकमेंडेशन जो बनाया था कि आपने आज

play05:01

बनाया तो आज नेक्स्ट इसमें जितनी मूवी से

play05:04

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

play05:06

तो हर हफ्ते नहीं होगी साइड करता जाता है

play05:08

तो आपका रिकमेंडेशन इंस्टॉल वे ग्रो इन

play05:12

ऑर्डर टो इंक्वायर इनटू ए न्यू मूवीस राइट

play05:15

तो इन्हें में मैं क्या बोल रहा हूं कि

play05:16

आपका मशीन लर्निंग मॉडल को कॉन्फिडेंट

play05:18

करते रहना पड़ेगा डाटा के साथ क्योंकि अगर

play05:21

आप ऐसा नहीं करोगे तो फिर क्या फायदा नहीं

play05:23

हो इसके ऊपर आपका रिकमेंडेशन काम ही नहीं

play05:25

कर रहा सेम काम ईमेल्स फ्रॉम का सफेद हो

play05:28

सकता है आपका इंटेसटाइन क्लासिफाइड आज की

play05:30

डेट से आज की डेट हिसाब से इन अप टू डेट

play05:32

है बट आपने एक बार स्तर पर डाल दिया उसके

play05:35

पास कोई ट्रेनिंग नहीं हुई आपने एक हैप्पी

play05:37

छोड़ दिया बट इस एक साल में तो जो मार्किट

play05:40

यस होते हैं वह लोग नए टेक्निक्स निकाल

play05:42

लेंगे स्पेशल टैलेंट बनाने के लिए उस टाइम

play05:45

फोल्डर में घुसे तो अगर आप

play05:47

अपनी आंखों अपने सिस्टम को तो फिर

play05:49

व्हाट्सएप पॉइंट वह ऑप्शन हो जाएगा तो

play05:52

सबसे बड़ा प्रॉब्लम बेशर्मी के साथ है वह

play05:54

यह है कि आपको अपने मॉडल को रीड प्रेम

play05:57

करवाते रहना पड़ता है ठीक है सुवटियो टू

play06:00

फैमिली पीपल टो वोट दे दूध से टॉक्सिंस

play06:03

पेज और डिविलियर्स और डु इस कि वह नया

play06:08

डाटा लेकर आते हैं यह डाटा पूरे टाइम

play06:09

अपडेट बड़ा होता है यह अपडेट हो रहा होता

play06:13

है किसी-किसी अपडेट हो सकता है मामलों में

play06:16

एंट्री और उसमें अपडेट हो रहा है या

play06:17

वांग्मय अपडेट हुआ है वन बीच वन मंत्रालय

play06:19

हो रहा है आपका काम किया है कि जैसी डाटा

play06:22

अपडेट हो रहा है आप क्या कर रहे हो जो भी

play06:24

नया डाटा है और जो पुराना डेट है सबको मच

play06:27

करके फिर से मॉडल को ट्रेन करा दो बनता

play06:30

मॉडल स्प्रेड आप उसको दोबारा से टेस्ट कर

play06:33

रहे हो और टेस्ट करके आप उसको दोबारा से

play06:35

सर्वर पर डाल रहा हो तो बेसिकली यह पूरा

play06:38

प्रोसेस है यह सर्कल्स में होता है

play06:40

बार-बार रिपीट होता रहता है इन्हें गिवन

play06:42

पीरियड इसको 2014 लिए ड्यूटियां वीट

play06:46

पीरियड और बंद कीजिए

play06:47

हैं या फिर सिमंस की जंगली लोग बहुत पास

play06:50

यह करना चाहते हैं बट डिपेंड कितना फास्ट

play06:53

है डिफरेंस ऑन द अमाउंट ऑफ डाटा लाइक और

play06:57

ग्राहकों शिव चौक तक डाटा है तो ट्रेंड

play07:00

करने में भी टाइम लगेगा तो जनरली यह पीपल

play07:02

डोंट नो नो बेसिस आफ विक या फिर 24hours

play07:06

बढ़िया डू इट इज व्हॉट बैचलर इन गैस

play07:09

दार्शनिक सम्राट करो मैं बेडवेटिंग इस

play07:13

वक्त यह स्ट्रेंजर मशीन लर्निंग टो डील

play07:15

विद यू एंड बाय डिंट आफ दर्स ओं

play07:17

इंक्रीमेंटल लर्निंग एंड थिस वायलेंस

play07:19

सिम्स डिलीवर डाटा इज बैक यू डोंट प्रिंट

play07:22

ऑनलाइन ऑर्डर सर्वर इंस्टीट्यूट एस यू पी

play07:25

डब्ल्यू मॉडल यूरिन ट्रेन विडमेट आइए

play07:28

ब्लुटूथ ऑल ओवर अगेन एंड लेफ्ट राइट क्लिक

play07:32

करता हूं ठीक है थोडा टेस्ट मैच

play07:34

वेस्टइंडीज नो अगर आपसे पूछे कि

play07:36

डिसएडवांटेज क्या है बैक प्लानिंग का तो

play07:39

पहला डिसएडवांटेज तो यह है कि अगर आपके

play07:42

पास बहुत बायोडाटा है बालों डाटा बहुत

play07:45

बड़ा होते हैं धीरे-धीरे आप बहुत ही

play07:47

तेल घर वापिस सोशल नेटवर्क जो हर एक महीने

play07:50

में दो महीने में 22444 टाइम हो रहा है तो

play07:53

अमाउंट आफ बहुत बढ़ते जा रहे हैं तो अगर

play07:55

आपका डाटा बहुत बड़ा हो जाए तो ऐसा भी हो

play07:58

सकता है कि आपके एडिटिंग टूल्स जो है वह

play08:01

अपने डाटा को प्रॉसेस है ना कर पाएं राइट

play08:03

बैक डेट में कन्वर्ट हो गया उसका डाटा तो

play08:05

आप एक बार में पूरा चंख पूरा चमक डिज्नी

play08:07

पारो आपका कोड वर्ड जा रहे है प्राइड तो

play08:10

डिटेल प्रॉब्लम की ऑप्शंस आपके पास

play08:12

लिमिटेशन है कि पूरे डाटा के साथ ही तय

play08:14

होगा तो पूरा डाटा का बहुत बड़ा हो गया तो

play08:16

वह करेंगे यह का या राइट जैसे कि प्रॉब्लम

play08:19

है इस हार्डवेयर लैविटेशन हार्ड वर्क

play08:21

लिमिटेड का बात क्या है कि कभी हो सकता है

play08:24

आपका मशीन लर्निंग मॉडल किसी ऐसी जगह पर

play08:26

चल रहा है जहां से आपका इंस्टेंट

play08:29

कनेक्टिविटी नहीं है तो आप ऐसा नहीं कर

play08:31

सकते कि आप तुरंत से मोडल को लेकर आओ नए

play08:33

ट्विटर पर ट्रेंड करो फिर अपलोड कर दो

play08:35

आपके पास यह फैसिलिटी नहीं है मैं कोई

play08:37

दूसरा जो देता हूं लेट से आपने कोई ऐसा

play08:42

डिफरेंस ऐप बनाया जो आदमी वाले यूज कर रहे

play08:46

हैं एकदम एक्सट्रीम के

play08:47

कि और सिनारियो मिली लद्दाख जगह पर बोलो

play08:50

आपका मशीन लर्निंग आप यूज कर रहे हैं उन

play08:53

लोगों को राइट समथिंग या फिर कुछ भी करने

play08:55

के लिए अब वहां पर इंटरनेट ऐक्सेस नहीं है

play08:57

तो आप का जो मॉडल है वो के फोन पर रन कर

play09:00

रहा है Dual ऐप तो एक बार मुझे चला है अब

play09:03

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

play09:05

इंटरनेट कनेक्टिविटी वाले समय में नहीं

play09:07

आते तब तक आप उसको वापस फोल्ड करके ट्रेन

play09:10

करके अपडेट नहीं कर सकते तो डिटेल इमिटेशन

play09:12

टाइट सिमिलरली थे अपने सॉफ्टवेयर बनाया

play09:14

मशीन रहने का यकीन सेटेलाइट आपको भेजना है

play09:17

टाइट अपसेट लाइक एक बार एक्सेस मतलब पॉकेट

play09:20

में गया तो वहां पर उन्हें उस इंटरनेट

play09:21

कनेक्टिविटी है नहीं है या किसी ट्रेन में

play09:24

अपने डाल रखा है स्कूटर और अभी पता नहीं

play09:26

कौन सी जगह पर है तो इस तरीके से यह कार

play09:28

एक्टिविटी नहीं है अपने मॉडल से बात करने

play09:31

कि तो आप इतना फ्रिक्वेंट अपडेट्स नहीं ले

play09:33

सकते तो इस तरह की जगह पर दायक लर्निंग

play09:35

फील कर रहा होता फिर कर सकते हैं ठीक है

play09:37

खड अवेलेबिलिटी है अब मैंने आपको बोला कि

play09:40

आप जब भी लिए कर दो 24hrs पीरियड में आपको

play09:43

अपडेट करके अपने मॉडल को अपनाने डाटा के

play09:45

साथ साइड अब इसमें भी परेशानी है

play09:47

मैं प्लस जॉब एक सोशल नेटवर्किंग वेबसाइट

play09:49

पर काम कर रहे हो आपने एक मॉडल बनाया जो

play09:51

सबसे बेस्ट फ्रेंड स्टोरीस जो है अभी उसको

play09:54

ला करके दिखाता है अनुसार इस आधा आज सोशल

play09:58

नेटवर्किंग वेबसाइट है वह यूज की जनरेट

play10:00

करता है ऑन द बेसिस ऑफ गुर्जर का इंटरेस्ट

play10:02

ट्राइड बट यह फीडबैक लगने लगा रखा है तो

play10:06

वह 24 घंटे के बाद अपडेट होता है नए डाटा

play10:08

के ऊपर अब आलू चाट इसे कुछ अचानक से कुछ

play10:11

बात फैल गई आपके नेटवर्क पर कुछ हो सकता

play10:14

है इंडियन गवर्नमेंट मैं कुछ जैसे

play10:16

डिमोनिटाइजेशन के बारे में कुछ न्यूज़

play10:18

निकलकर आई तो अब यह ऐसा न्यू है जिसके

play10:20

बारे में सभी लोग इंटरेस्ट हुए मैं भी

play10:21

इंट्रस्टेड लूंगा कोई और विड्रॉल तो मेरा

play10:23

रेफ्रेंस जनरली स्पोर्ट्स होता है बट

play10:26

स्टिल सभी डिमोनिटाइजेशन मेरे को भी

play10:28

फैक्टर है तो मैं इसमें इंटरेस्टेड हूं बट

play10:31

मेरे इंटरेस्ट अपडेट कितनी देर के बाद

play10:32

होंगे सोचते रिकी पोंटिंग और उसके बाद

play10:34

राइट क्लिक कर रहा हूं इस तरह की न्यूज़

play10:36

पर खुद से जाकर डिमोनिटाइजेशन लें और न्यू

play10:39

स्वेटर में प्ले करो मेरे अपडेट का होगा

play10:41

कैंडी क्रश के बाद जो मैंने एडिट जनरेट

play10:43

किया अभी बट मुझे तो डिमोनिटाइजेशन का

play10:47

न्यूज़

play10:47

पूरी फिल्म चाहिए राइट बट वो मुझे मिल

play10:50

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

play10:53

के बाद ही रिस्पोंड करेगा अब सैलरी

play10:55

प्रॉब्लम क्या है कि 2008 के बाद जब

play10:57

सिस्टम अपडेट होगा उसे दिल्ली समाचार

play10:59

न्यूज़ भी पूरा भर जाएगा डिमोनिटाइजेशन के

play11:01

News से जो कि अब उसका इंपोर्टेंट भी नहीं

play11:03

है जो कि 24 घंटे पहले पोर्टल का उद्घाटन

play11:05

किया है तो इससे झाड़ियों की वैकेंसी किस

play11:08

तरीके से डिक्शनरी तेल कर रहा है ठीक है

play11:10

तो बेस्ट लविंग मोस्ट पीपल यूज्ड स्लैमिंग

play11:14

बहुत सारे सिलाई उसमें बर्थडे रस

play11:16

नोटिफिकेशन आ रही है जहां पर बेस्ड

play11:18

लर्निंग इस नोट हेल्पफुल ठीक है स्कूल

play11:20

प्रॉब्लम्स क्रिएट कर देता है तो इस तरह

play11:22

इसने युद्ध में एक दूसरा अप्रोच यूज किया

play11:24

जाता है इसको बोलते हैं ऑनलाइन लर्निंग

play11:26

जोन एक्ट्रेसेस करें

Rate This

5.0 / 5 (0 votes)

Etiquetas Relacionadas
Machine LearningOnline TrainingOffline TrainingData ScienceModel TrainingAI AlgorithmsBatch LearningIncremental LearningData ProcessingServer Deployment
¿Necesitas un resumen en inglés?