summaryrefslogtreecommitdiff
path: root/run.py
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-06-25 18:13:03 +0200
committerJules Laplace <julescarbon@gmail.com>2018-06-25 18:13:03 +0200
commit668094072037d4f0b3ed218859af8a17a50285f5 (patch)
tree39f4148865c0e277eca808aac9fd16fca57751d8 /run.py
parentc71ebd57fffce5057d30917a4bff60dfc0e6c9ae (diff)
process sequences
Diffstat (limited to 'run.py')
-rw-r--r--run.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/run.py b/run.py
index 42f4e79..779eb2c 100644
--- a/run.py
+++ b/run.py
@@ -61,7 +61,6 @@ def recurse_two_frames(moduleNetwork, tensorOutput, a_np, b_np, frame_index, mor
tensorInputFirst = torch.FloatTensor(a_np)
tensorInputSecond = torch.FloatTensor(b_np)
- print("{} {}".format(tensorInputFirst.size(1), tensorInputSecond.size(1)))
process(moduleNetwork, tensorInputFirst, tensorInputSecond, tensorOutput)
middle_np = tensorOutput.clamp(0.0, 1.0).numpy()