0% found this document useful (0 votes)
2 views

copy

Uploaded by

Live Channel
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)
2 views

copy

Uploaded by

Live Channel
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/ 1

Define PR? Explain different stages of pattern recognition? Define dimensionality reduction?

Why do we reduce dimension of


Pattern Recognition (PR) is the process of identifying or feature vectors?
classifying objects, patterns, or signals based on their features and Dimensionality reduction is the process of reducing the number of
regularities. It is a key area in machine learning, computer vision, features (or dimensions) in a dataset while preserving as much of the
and data analysis, enabling systems to recognize and interpret data relevant information as possible.
from the real world. We reduce the dimensions of feature vectors to:
Stages of Pattern Recognition: The pattern recognition process *Simplify data visualization and interpretation.
can be broken down into the following stages: *Remove noise and redundant features.
Sensing (Data Acquisition) Objective: Collect raw data from *Improve computational efficiency.
sensors or data sources. *Prevent overfitting in machine learning models.
3. Feature Extraction - Objective: Identify and extract meaningful
features or attributes from the data that help differentiate between
patterns. Define classification? Explain different classification tasks?
Classification/Decision Making- Objective: Use extracted Classification is a supervised learning task where a model predicts
features to assign the input to one of the predefined categories or the category of input data.
classes. Types of Classification Tasks
Postprocessing - Objective: Refine and interpret the output of the 1. Binary Classification: Two classes (e.g., spam vs. not
classification stage. spam).
Evaluation- Objective: Assess the performance of the pattern 2. Multiclass Classification: More than two classes (e.g., fruit
recognition system. types).
3. Multilabel Classification: Multiple labels per instance (e.g.,
Explain any two real time examples of pattern recognition? tags for a news article).
Facial Recognition in Security Systems 4. Imbalanced Classification: Uneven class distribution (e.g.,
Use Case: Unlocking devices, identifying individuals in fraud detection).
surveillance footage, or granting access to secure areas. 5. Ordinal Classification: Ordered classes (e.g., ratings: poor,
How It Works: good, excellent).
Data Acquisition:: A camera captures an image or video of a face.
Preprocessing::- The system adjusts the image for lighting, scales
it to a standard size, and aligns facial features.
Real-World Examples:
Explain the importance of vector, matrix and tensor at feature
*Apple Face ID: Unlocking iPhones using 3D facial recognition.
*CCTV Surveillance: Identifying persons of interest in public extraction process?
places. Importance of Vectors, Matrices, and Tensors in Feature
Spam Email Detection Extraction
Use Case: Filtering unwanted or malicious emails in email inboxes Vector: Represents individual data points (e.g., pixel intensity,
(e.g., Gmail, Outlook). numerical features) and enables calculations like distance and
How It Works: transformation.
Data Acquisition::- Incoming emails are collected along with Matrix: Organizes multiple data points, used for linear
metadata (sender, subject, body content). transformations, dimensionality reduction (e.g., PCA), and image
Preprocessing::- Text from emails is cleaned by removing stop data representation.
words, punctuation, and irrelevant characters. Tensor: Handles high-dimensional data (e.g., videos, 3D images),
Real-World Examples:Google Gmail: Uses machine learning to essential for deep learning and convolution operations.
filter 99.9% of spam emails.
Outlook's Focused Inbox: Prioritizes legitimate emails over
potential spam How do you define similarity between two feature
vectors? Explain any one technique to analysis the
distance between two features vectors.
Define features? Explain different types of learning mechanism to
extract features automatically?
Defining Similarity
Features are individual measurable properties or characteristics of Similarity between feature vectors measures how
data that are used as inputs for machine learning models. They help close they are, often using distance metrics.
the model identify patterns or make predictions.
Types of Learning Mechanisms to Extract Features
Euclidean Distance
Automatically: Formula: d(A,B)=∑i=1n(ai−bi)2d
Supervised Learning::*Uses labeled data to learn features that Steps:
correlate with output labels.*Example: CNNs in image *Subtract corresponding elements of the vectors.
classification.
Unsupervised Learning::: *Uses unlabeled data to discover
*Square the differences, sum them up, and take the
patterns or structures.*Example: PCA for dimensionality reduction. square root.
Self-Supervised Learning::*The model generates its own Use:
labels)…*Example: BERT for text learning by predicting masked Common in clustering (e.g., K-means) and
words.
Semi-Supervised Learning:*Combines both labeled and nearest-neighbor tasks.
unlabeled data to learn features.*Example: Speech recognition Effective with normalized data.
systems using a mix of labeled and unlabeled audio.

You might also like