根据公式换算delta
(p_new_node)
| 24 | return np.array(answers) |
| 25 | |
| 26 | def compute_epsilon_new_node(p_new_node): |
| 27 | ''' |
| 28 | 根据公式换算delta |
| 29 | ''' |
| 30 | delta = 400 * math.log10(p_new_node /(1-p_new_node)) |
| 31 | return 1000 + delta |
| 32 | |
| 33 | # For prediction parsing, into ReACT format |
| 34 | def react_parser(string): |
nothing calls this directly
no outgoing calls
no test coverage detected