AI Unit III notes
AI Unit III notes
Case Study: A global manufacturing company automated its invoice processing using
RPA. The bots extracted invoice data from emails and attachments, validated the
information, and updated the company's accounting system. This reduced manual
errors, processing time, and allowed employees to focus on more value-added tasks.
2. Healthcare:
Case Study: An e-commerce retailer automated its order processing using RPA. Bots
were used to retrieve orders from various platforms, validate payment information,
update inventory, and generate shipping labels. This led to quicker order fulfillment,
reduced order processing costs, and improved accuracy.
4. Human Resources:
Case Study: A bank automated its customer data update process. Bots verified and
updated customer information across different systems, ensuring data consistency and
compliance with regulations. This reduced manual effort, improved data accuracy, and
enhanced regulatory compliance.
6. Manufacturing:
7. Telecommunications:
Case Study: An energy utility company automated its meter reading and billing
processes. RPA bots collected meter data remotely, validated consumption, generated
bills, and sent notifications to customers. This improved billing accuracy, reduced
manual effort, and enhanced customer satisfaction.
These case studies showcase the diverse applications of RPA across various
industries. RPA's ability to automate rule-based, repetitive tasks has a significant impact
on efficiency, accuracy, and cost reduction. However, it's important to note that
successful implementation requires careful planning, collaboration, and ongoing
monitoring to ensure the desired outcomes are achieved.
Machine Learning
Machine learning is a subfield of artificial intelligence (AI) that uses algorithms trained
on data sets to create self-learning models that are capable of predicting outcomes and
classifying information without human intervention. Machine learning is used today for a
wide range of commercial purposes, including suggesting products to consumers based
on their past purchases, predicting stock market fluctuations, and translating text from
one language to another.
In common usage, the terms “machine learning” and “artificial intelligence” are often
used interchangeably with one another due to the prevalence of machine learning for AI
purposes in the world today. But, the two terms are meaningfully distinct. While AI refers
to the general attempt to create machines capable of human-like cognitive abilities,
machine learning specifically refers to the use of algorithms and data sets to do so.
The main goal of the supervised learning technique is to map the input variable(x) with
the output variable(y). Some real-world applications of supervised learning are Risk
Assessment, Fraud Detection, Spam filtering, etc.
Supervised machine learning can be classified into two types of problems, which are
given below:
Classification
Regression
a) Classification
Classification algorithms are used to solve the classification problems in which the
output variable is categorical, such as "Yes" or No, Male or Female, Red or Blue, etc.
The classification algorithms predict the categories present in the dataset. Some real-
world examples of classification algorithms are Spam Detection, Email filtering, etc.
b) Regression
Regression algorithms are used to solve regression problems in which there is a linear
relationship between input and output variables. These are used to predict continuous
output variables, such as market trends, weather prediction, etc.
2. Unsupervised learning
Unsupervised learning is different from the Supervised learning technique; as its name
suggests, there is no need for supervision. It means, in unsupervised machine learning,
the machine is trained using the unlabeled dataset, and the machine predicts the output
without any supervision.
Unsupervised Learning can be further classified into two types, which are given below:
Clustering
Association
1) Clustering
The clustering technique is used when we want to find the inherent groups from the
data. It is a way to group the objects into a cluster such that the objects with the most
similarities remain in one group and have fewer or no similarities with the objects of
other groups. An example of the clustering algorithm is grouping the customers by their
purchasing behaviour.
2) Association