Which machine learning algorithm works by recursively splitting the data set into subsets based on the value of features until it reaches a certain stopping criterion?

  • Decision Trees
  • K-Means Clustering
  • Linear Regression
  • Neural Networks
Decision Trees work by recursively splitting the dataset into subsets based on feature values. This process continues until a stopping criterion, such as the maximum depth of the tree, is met. Decision Trees are used for both classification and regression tasks.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *