(i, state)
| 28 | sample_graph_label = base._LIB_OP.sample_graph_label |
| 29 | |
| 30 | def _iter_body(i, state): |
| 31 | y, count, n, ta = state |
| 32 | curr_result = sample_node(count[i] * n, y[i]) |
| 33 | curr_result = tf.reshape(curr_result, [-1, n]) |
| 34 | out_ta = ta.write(i, curr_result) |
| 35 | return i+1, (y, count, n, out_ta) |
| 36 | |
| 37 | |
| 38 | def sample_node(count, node_type, condition=''): |
nothing calls this directly
no test coverage detected