Week 1 Flashcards
What is ‘Machine Learning’
a subset of artificial intelligence that enables systems to learn from data, identify patterns, and make decisions with minimal human intervention. This process is similar to how humans learn from their experiences.
What are the 3 foundations of Machine Learning?
data, algorithms, and model
What is Data?
data fuels machine learning. It encompasses different forms like numbers, text, images, or audio.
What is Algorithms?
an algorithm is the logical procedure used to process data and learn patterns to make predictions or decisions.
What is Models?
models are the end products of the machine learning process. It represents what the algorithm has learned from the data.
What are the 3 types of Machine Learning?
Supervised Learning, Unsupervised Learning, and Reinforcement Learning.
What is ‘Supervised Learning’?
in supervised learning, the algorithm is trained using a dataset containing input features and their corresponding output labels. This is similar to a teacher providing examples with answers to a student, who learns to predict answers for new examples.
What are the 2 types of ‘Supervised Learning’
Regression and Classification
What is Regression?
predicts a continuous numerical value.
What is Classification?
predicts a categorical value.
What is ‘Unsupervised Learning’
are trained on datasets with only input features provided. The algorithm must discover patterns or structures within the data. It resembles a learner organizing classmates without instructions. The learner observes similarities, such as clothing or backpacks, and forms groups based on patterns they discover, just as an algorithm finds structure in unlabeled data.
What are the 2 types of ‘Unsupervised Learning’
Clustering and Dimensionality Reduction.
What is Clustering?
groups similar data points together.
What is ‘Dimensionality Reduction’
is the process of simplifying a dataset by reducing the number of features (or dimensions) while still keeping the most important information.
What is ‘Reinforcement Learning’
reinforcement learning algorithms learn through interaction with an environment, receiving rewards or penalties based on their actions.
The algorithm learns to improve decisions based on feedback.
What are the 5 steps in making ‘Machine Learning Models’
- Data Collection and Preparation
- Algorithm Selection
- Model Training
- Model Evaluation
- Model Deployment
Give examples of ‘Sypervised Learning Models’
Linear Regression, Logistic Regression, Decision Trees, and Random Forest