diff options
Diffstat (limited to 'run.py')
| -rw-r--r-- | run.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -57,8 +57,8 @@ def process_tree(moduleNetwork, a, b, tensorOutput, steps): if steps < 2: return [tensorMiddle] else: - tensorLeft = process_tree(moduleNetwork, tensorInputFirst, tensorMiddle, tensorOutput, steps / 2) - tensorRight = process_tree(moduleNetwork, tensorMiddle, tensorInputSecond, tensorOutput, steps / 2) + tensorLeft = process_tree(moduleNetwork, a, tensorMiddle, tensorOutput, steps / 2) + tensorRight = process_tree(moduleNetwork, tensorMiddle, b, tensorOutput, steps / 2) return tensorLeft + [tensorMiddle] + tensorRight if arguments_strVideo and arguments_strVideoOut: |
