LeafNode.py (321B)
1 class LeafNode: 2 def __init__(self, classification, count, elements): 3 self.classification = classification 4 self.count = count 5 self.elements = elements 6 7 def __str__(self): 8 9 return(f"Classification: {self.classification}\nCount: {self.count}\nLabel Counts: {self.elements.tolist()}")