Artificial Intelligence Tutorial

Introduction to Artificial Intelligence Intelligent Agents

Search Algorithms

Problem-solving Uninformed Search Informed Search Heuristic Functions Local Search Algorithms and Optimization Problems Hill Climbing search Differences in Artificial Intelligence Adversarial Search in Artificial Intelligence Minimax Strategy Alpha-beta Pruning Constraint Satisfaction Problems in Artificial Intelligence Cryptarithmetic Problem in Artificial Intelligence

Knowledge, Reasoning and Planning

Knowledge based agents in AI Knowledge Representation in AI The Wumpus world Propositional Logic Inference Rules in Propositional Logic Theory of First Order Logic Inference in First Order Logic Resolution method in AI Forward Chaining Backward Chaining Classical Planning

Uncertain Knowledge and Reasoning

Quantifying Uncertainty Probabilistic Reasoning Hidden Markov Models Dynamic Bayesian Networks Utility Functions in Artificial Intelligence

Misc

What is Artificial Super Intelligence (ASI) Artificial Satellites Top 7 Artificial Intelligence and Machine Learning trends for 2022 8 best topics for research and thesis in artificial intelligence 5 algorithms that demonstrate artificial intelligence bias AI and ML Trends in the World AI vs IoT Difference between AI and Neural Network Difference between Artificial Intelligence and Human Intelligence Virtual Assistant (AI Assistant) ARTIFICIAL INTELLIGENCE PAINTING ARTIFICIAL INTELLIGENCE PNG IMAGES Best Books to learn Artificial Intelligence Certainty Factor in AI Certainty Factor in Artificial Intelligence Disadvantages of Artificial Intelligence In Education Eight topics for research and thesis in AI Engineering Applications of Artificial Intelligence Five algorithms that demonstrate artificial intelligence bias 6th Global summit on artificial intelligence and neural networks Acting Humanly In Artificial Intelligence AI and ML Trends in the World AI vs IoT Artificial Communication Artificial intelligence assistant operating system Artificial Intelligence in Pharmacy Artificial Intelligence in Power Station Artificial Intelligence in Social Media Artificial Intelligence in Supply Chain Management Artificial Intelligence in Transportation Artificial Intelligence Interview Questions and Answers Artificial Intelligence Jobs in India For Freshers Integration of Blockchain and Artificial Intelligence Interesting Facts about Artificial Intelligence Machine Learning and Artificial Intelligence Helps Businesses Operating System Based On Artificial Intelligence SIRI ARTIFICIAL INTELLIGENCE SKILLS REQUIRED FOR ARTIFICIAL INTELLIGENCE Temporal Models in Artificial Intelligence Top 7 Artificial Intelligence and Machine Learning trends for 2022 Types Of Agents in Artificial Intelligence Vacuum Cleaner Problem in AI Water Jug Problem in Artificial Intelligence What is Artificial Super Intelligence (ASI) What is Logic in AI Which language is used for Artificial Intelligence Essay on Artificial Intelligence Upsc Flowchart for Genetic Algorithm in AI Hill Climbing In Artificial Intelligence IEEE Papers on Artificial Intelligence Impact of Artificial Intelligence On Everyday Life Impact of Artificial Intelligence on Jobs The benefits and challenges of AI network monitoring

Unsupervised Learning in AI

Unsupervised Learning in AI

  1. Unsupervised Learning
    1. Introduction
    1. Clustering
    1. Comparison between Supervised, Unsupervised, and Reinforcement Learning.

Unsupervised Learning

This is the third major category of Machine Learning. Unsupervised learning happens when we have data without additional feedback, and patterns.

For example, in a case of supervised learning, we always had the labeled data, like whether a data point represents rain or No rain, and using those labels, we were able to define the relationships between the data and make further predictions.

In unsupervised learning, we do not have any labels, for example we are given the data of temperature and humidity of 30 days, but that does not have label if it rained or not on that particular day, these kind of problems falls under the category of unsupervised learning.

In simple words, in unsupervised learning problem we do not have output labels but still we want to define some relationships, some patterns in the data and that can be done by Clustering.

Clustering is the task of organizing the set of objects into distinct clusters or say group of objects in such a way that all the similar objects tend to be in the same group or cluster.

You can learn more clustering here.

And, implementation of Clustering Algorithm here.

Supervised LearningUnsupervised LearningReinforcement Learning
Machine Learning model is trained on labeled data.Types of problems solved by supervised learning are Regression and Classification.Training the supervised Machine learning model requires external supervision.  Machine Learning models are trained on unlabeled data.Types of problems solved by unsupervised learning are Clustering and Association.No supervision is required for the training of the unsupervised machine learning model.AI agent start taking random actions and then learn from errors and rewards.Types of problems solved by reinforcement learning is reward-based.No supervision is required for the training the reinforcement machine learning model.

Comparison between Supervised Learning, Unsupervised Learning, and Reinforcement Learning.

Comparison between Supervised, Unsupervised, and Reinforcement Learning on the basis of some examples.

 Supervised LearningUnsupervised LearningReinforcement Learning
BankingTo predict whether the banknote is counterfeit or not.Segment customers by behavioral categories.To create the next best offer model for the call center group.
HealthCareTo predict whether is diabetic or not.To categorize the MRI data by normal and abnormal images.To allocate scarce medical resources to handle different ER cases.
RetailTo analyze the products which customers buy together?To recommend products to customers based on their past purchases.To reduce excess stock with dynamic pricing.