MCPcopy Create free account
hub / github.com/Jack-Cherish/Machine-Learning / storeTree

Function storeTree

Decision Tree/Decision Tree.py:384–386  ·  view source on GitHub ↗
(inputTree, filename)

Source from the content-addressed store, hash-verified

382 2017-07-25
383"""
384def storeTree(inputTree, filename):
385 with open(filename, 'wb') as fw:
386 pickle.dump(inputTree, fw)
387
388"""
389函数说明:读取决策树

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected