Machine Learning Concepts Flashcards
(51 cards)
What is machine learning?
A field of AI where systems learn from data to make predictions or decisions.
What are the main types of machine learning?
Supervised, Unsupervised, and Reinforcement Learning.
What is supervised learning?
Learning from labeled data to predict outcomes.
What is unsupervised learning?
Learning patterns from unlabeled data.
What is reinforcement learning?
Learning by interacting with an environment to maximize cumulative reward.
What is a labeled dataset?
A dataset where each input is paired with the correct output.
What is a feature?
An individual measurable property or characteristic of data.
What is a label?
The output variable or the value to be predicted.
What is a model?
A mathematical representation of a real-world process learned from data.
What is training data?
Data used to train a machine learning model.
What is test data?
Data used to evaluate the accuracy of a trained model.
What is validation data?
Data used to fine-tune model parameters during training.
What is overfitting?
When a model learns the training data too well and performs poorly on unseen data.
What is underfitting?
When a model is too simple to capture the data’s structure.
What is a decision tree?
A tree-like model used to make decisions based on input features.
What is a random forest?
An ensemble of decision trees used to improve prediction accuracy.
What is k-nearest neighbors (KNN)?
A method that classifies based on the majority class among k nearest data points.
What is a support vector machine (SVM)?
A model that finds the optimal boundary that separates classes.
What is a linear regression?
A model that fits a line to predict a continuous output.
What is logistic regression?
A classification algorithm based on the logistic function.
What is classification?
Predicting discrete labels.
What is regression?
Predicting continuous values.
What is clustering?
Grouping similar data points together.
What is dimensionality reduction?
Reducing the number of features while preserving information.