(self, tree)
| 184 | return x |
| 185 | |
| 186 | def get_output(self, tree): |
| 187 | logits = [] |
| 188 | try: |
| 189 | self.get_output_recursive(tree, logits) |
| 190 | except Exception as e: |
| 191 | display_tree(tree) |
| 192 | raise e |
| 193 | return tf.concat(0, logits) |
| 194 | |
| 195 | def score(self, trees): |
| 196 | if trees is None: |
no test coverage detected