Föreläsning 5 (Regression) Flashcards

1
Q

Are random forests an example of an ensamble method?

A

Yes!

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

How do you introduce variation in random forests?

A

by (i) varying the dataset
slightly and (ii) restricting the splits
allowed at each level

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

What is bootstrapping?

A

Bootstrapping in AI refers to the process of building and improving machine learning models by using their own predictions as training data. In other words, the model is initially trained on a small set of labeled data and then used to make predictions on new, unlabeled data. The predictions are then added to the labeled dataset, and the model is retrained on the larger dataset.

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

Name 2 advantages of using random forests

A
  • Random forests is considered a highly accurate and robust method
    because of the number of decision trees participating in the process.
  • It does not suffer from the overfitting problem. The main reason is
    that it takes the average of all the predictions, which cancels out the
    biases.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Name 2 disadvantages of using random forests

A
  • Random forests is slow in generating predictions because it has
    multiple decision trees. This whole process is time-consuming.
  • The model is difficult to interpret compared to a decision tree, where
    you can easily make a decision by following the path in the tree.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is regression?

A

Mapping data points to numbers

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