10 lines
142 B
Python
10 lines
142 B
Python
|
from bin.Classess.DecisionTree import Learning
|
||
|
|
||
|
|
||
|
def LearnDecisionTree():
|
||
|
Learning()
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
LearnDecisionTree()
|