0% found this document useful (0 votes)
0 views4 pages

AI Unit III notes

The document discusses various use cases of Robotic Process Automation (RPA) across industries such as finance, healthcare, retail, and more, highlighting case studies that demonstrate efficiency improvements and cost reductions. It also explains machine learning, distinguishing between supervised and unsupervised learning, and detailing their applications in real-world scenarios. Overall, it emphasizes the importance of careful planning and monitoring for successful automation implementation.

Uploaded by

aditisahotra2003
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
0 views4 pages

AI Unit III notes

The document discusses various use cases of Robotic Process Automation (RPA) across industries such as finance, healthcare, retail, and more, highlighting case studies that demonstrate efficiency improvements and cost reductions. It also explains machine learning, distinguishing between supervised and unsupervised learning, and detailing their applications in real-world scenarios. Overall, it emphasizes the importance of careful planning and monitoring for successful automation implementation.

Uploaded by

aditisahotra2003
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4

Identifying Automation Opportunities in F&A

1. Finance and Accounting:

Use Case: Invoice Processing

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:

Use Case: Claims Processing

Case Study: A healthcare insurance provider used RPA to streamline claims


processing. Bots were employed to extract data from claim forms, verify policy details,
and process claims faster. This resulted in reduced processing time, minimized errors,
and improved customer satisfaction.

3. Retail and E-commerce:

Use Case: Order Processing

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:

Use Case: Employee Onboarding

Case Study: A multinational corporation automated its employee onboarding process.


RPA bots collected and verified new hire information, initiated background checks, set
up accounts in various systems, and sent out welcome emails. This resulted in a
consistent and error-free onboarding experience for employees.

5. Banking and Financial Services:

Use Case: Customer Data Update

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:

Use Case: Inventory Management

Case Study: A manufacturing company implemented RPA for inventory management.


Bots were used to track inventory levels, trigger reorder notifications, and update stock
levels in real-time. This minimized stockouts, reduced excess inventory, and improved
supply chain efficiency.

7. Telecommunications:

Use Case: Customer Service Support

Case Study: A telecommunications provider employed RPA to enhance its customer


service support. Bots were used to handle routine customer queries, provide account
information, and process service requests. This reduced wait times, improved response
accuracy, and freed up human agents for more complex issues.

8. Energy and Utilities:

Use Case: Meter Reading and Billing

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.

1. Supervised Machine Learning

As its name suggests, Supervised machine learning is based on supervision. It means


in the supervised learning technique, we train the machines using the "labelled" dataset,
and based on the training, the machine predicts the output. Here, the labelled data
specifies that some of the inputs are already mapped to the output. More preciously, we
can say; first, we train the machine with the input and corresponding output, and then
we ask the machine to predict the output using the test dataset.

Let's understand supervised learning with an example. Suppose we have an input


dataset of cats and dog images. So, first, we will provide the training to the machine to
understand the images, such as the shape & size of the tail of cat and dog, Shape of
eyes, colour, height (dogs are taller, cats are smaller), etc. After completion of training,
we input the picture of a cat and ask the machine to identify the object and predict the
output. Now, the machine is well trained, so it will check all the features of the object,
such as height, shape, colour, eyes, ears, tail, etc., and find that it's a cat. So, it will put
it in the Cat category. This is the process of how the machine identifies the objects in
Supervised Learning.

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.

In unsupervised learning, the algorithm discovers patterns, structure, or relationships


within the data. The main aim of the unsupervised learning algorithm is to group or
categories the unsorted dataset according to the similarities, patterns, and differences.
Machines are instructed to find the hidden patterns from the input dataset.

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

Association rule learning is an unsupervised learning technique, which finds interesting


relations among variables within a large dataset. The main aim of this learning algorithm
is to find the dependency of one data item on another data item and map those
variables accordingly so that it can generate maximum profit. This algorithm is mainly
applied in Market Basket analysis, Web usage mining, continuous production, etc

You might also like