From f85b9670b2bcf48b6f0bc6c8906f7d8ee97964b6 Mon Sep 17 00:00:00 2001 From: aodhneine Date: Sun, 15 Nov 2020 19:12:43 +0000 Subject: [PATCH] Remove debug print --- pygrad/tensor.py | 1 - 1 file changed, 1 deletion(-) diff --git a/pygrad/tensor.py b/pygrad/tensor.py index d71a3e2..54a7e6b 100644 --- a/pygrad/tensor.py +++ b/pygrad/tensor.py @@ -78,7 +78,6 @@ class Tensor: # TODO Compute gradients only for tensors that need it. def _backprop(self, upstream): - print(upstream) # Backprop through the tensor iff it has any parents. if self._parents is not None: for node, grad in zip(self._parents, self._back(upstream)):