diff --git a/src/AI/DecisionTrees/DecisionTree.py b/src/AI/DecisionTrees/DecisionTree.py new file mode 100644 index 0000000..87ed395 --- /dev/null +++ b/src/AI/DecisionTrees/DecisionTree.py @@ -0,0 +1,13 @@ +from typing import List, Any + +from src.AI.DecisionTrees.AttributeDefinition import AttributeDefinition + + +class DecisionTree(object): + root: AttributeDefinition + branches: List[Any] + + def __init__(self, root): + self.root = root + self.branches = [] + self.branchesNum = 0 \ No newline at end of file