> > def EmptyDecisionTree:
> >   def __init__(self):
> >     pass
> >   def perform_work(self):
> >     return True
> >   def get_score(self):
> >     return "score: decision tree is completely empty"

class EmptyDecisionTreeOfEmptyDecisionTrees:
  def __init__(self, min_number_children, max_number_children):
    nch = int(random.random() * (max_number_children - min_number_children))
    self.children = [EmptyDecisionTree(min(min_number_children//2,0), 
min(max_number_children//2,0)) for x in range(

# hey i noticed (again) a lot of inhibition is associated with implementing 
utility code
# i'm thinking on how the urgent behaviors that make smidges of result-like 
things are really intense and urgent, and tend to be really comfortable with 
leaving contexts
# but in computer code we do accumulate utility libraries [.... maybe really 
useful to clarify and reinforce that utility libraries are how to do things 
professionally in computer code. even a baby utility library is helpful

Reply via email to