diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-06-25 15:31:32 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-06-25 15:31:32 +0200 |
| commit | fb10cbb2a23792ba8baf29816f69388218ee970a (patch) | |
| tree | 86b014cc6b8a7b7e4d346b060073d852e2fca0cd | |
| parent | 284dc5fe46bdaaf78f0416bfc6a5067a868b9062 (diff) | |
go hey
| -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: |
