Machine learning Flashcards

(8 cards)

1
Q

Machine learning

A

getting a computer to do well on a task without explicitly programming it → Improving performance on a task based on experience

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Unsupervised learning

A

learns from data without human supervision

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Reinforcement learning

A

a type of machine learning process that focuses on decision making by autonomous agents

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Supervised learning

A

uses labeled datasets to train algorithms to predict outcomes and recognize patterns

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Classification

A

the model tries to predict the correct label of a given input data. In classification, the model is fully trained using the training data, and then it is evaluated on test data before being used to perform prediction on new unseen data

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

A decision tree

A

a supervised learning algorithm used for both classification and regression tasks. It has a hierarchical tree structure which consists of a root node, branches, internal nodes and leaf nodes. It It works like a flowchart help to make decisions step by step

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Hunt’s algorithm

A

builds a decision tree in a recursive fashion by partitioning the training dataset into successively purer subsets - TREE INDUCTION

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Gini Splitting

A

a technique used ito determine the best attribute to split the data at each node.
It relies on the Gini Impurity, which measures how “pure” a node is—meaning how mixed the class labels are

How well did you know this?
1
Not at all
2
3
4
5
Perfectly