(inputTree, filename)
| 382 | 2017-07-25 |
| 383 | """ |
| 384 | def storeTree(inputTree, filename): |
| 385 | with open(filename, 'wb') as fw: |
| 386 | pickle.dump(inputTree, fw) |
| 387 | |
| 388 | """ |
| 389 | 函数说明:读取决策树 |
nothing calls this directly
no outgoing calls
no test coverage detected