Decision Trees

Artificial Intelligence & Machine Learning Basics 219 views Nov 05, 2025 1 min read

Definition:
A supervised learning algorithm used for classification and regression. It splits data into branches based on feature values to make decisions.

Key Points:

  • Tree structure: Root → Branch → Leaf

  • Root: Main feature

  • Leaf: Predicted outcome

  • Splitting is based on criteria like Gini Index, Entropy, or Variance

Applications:

  • Loan approval

  • Customer segmentation

  • Medical diagnosis

Advantages:

  • Easy to understand and interpret

  • Handles both numerical and categorical data

Limitations:

  • Prone to overfitting

  • Can be unstable with small data changes

Some advanced sections are available for Registered Members
Share this Post
🚀 Want to Test Your Knowledge?

Take quizzes related to this topic and see where you stand!

Start Quiz Now
Back to Tutorials