Advertisement
Guest User

Untitled

a guest
Nov 19th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.32 KB | None | 0 0
  1. nodes_to_process = []
  2.  
  3.             for node in output_nodes:
  4.                 node.arrays = eval_all(node.function, node.parent.arrays)
  5.                 if not check_len(node.arrays, outputs):
  6.                     nodes_to_process.append(node)
  7.                 if len(nodes_to_process) >= beam_width:
  8.                     break
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement