Intro to AI(Week 2 - Section 1): Machine Learning Flashcards
(80 cards)
Define: Artificial Intelligence (AI)
A field of computer science that focuses on creating intelligent machines capable of performing tasks that typically require human intelligence.
Define: Machine Learning
A subset of AI that uses computer algorithms to analyze data and make intelligent decisions based on what it has learned.
Define: Traditional Programming
The process of creating algorithms using data and rules to develop a program that provides specific answers.
Define: Machine Learning Model
A set of rules and parameters created by a machine learning algorithm to determine the logic and predict values based on inputs.
Define: Supervised Learning
A type of machine learning where an algorithm is trained on human-labeled data to classify new data accurately.
Define: Unsupervised Learning
A type of machine learning where an algorithm finds patterns in unlabeled data without human-labeled guidance.
Define: Reinforcement Learning
A type of machine learning where an algorithm learns how to achieve goals by trying different combinations of allowed actions and receiving rewards or punishments.
Define: Behavioral Rules
Rules defined by examining and comparing large datasets to find common patterns in machine learning.
Define: Clustering
A technique used in unsupervised learning to group similar data together based on their similarities.
Define: Baseline
The normal or expected behavior of a system or dataset used as a reference point for comparison in machine learning.
Define: Outlier
Data points that significantly differ from the normal or expected behavior in machine learning.
Define: Malicious Behavior
Actions or patterns that indicate harmful or unauthorized activities in machine learning.
Define: State
The current condition or situation in reinforcement learning that defines the starting point for decision-making.
Define: Allowed Actions
Actions that a machine learning algorithm can take within defined constraints to achieve its goals in reinforcement learning.
Define: Rewards and Punishments
Feedback given to a machine learning algorithm based on the quality of its decisions in reinforcement learning.
What are the three categories of Machine Learning?
- Supervised Learning
- Unsupervised Learning
- Reinforcement Learning.
What is Supervised Learning?
It refers to building a classification model using class labels in the dataset.
What is Unsupervised Learning?
It involves discovering class labels from unstructured data without using class labels.
What is Reinforcement Learning?
It uses a reward function to penalize bad actions or reward good actions.
What are the three categories of Supervised Learning?
- Regression
- Classification
- Neural Networks
What is Regression?
It estimates continuous values by looking at the relationships between features and the result.
What are Neural Networks?
They imitate the structure of the human brain.
What is Classification?
It focuses on discrete values and assigns class labels based on input features.
What are some examples of Classification models?
Decision trees, support vector machines, logistic regression, and random forests.