deep-learning-from-scratch-3
deep-learning-from-scratch-3 copied to clipboard
『ゼロから作る Deep Learning ❸』(O'Reilly Japan, 2020)
```py class Variable: # ... def backward(self, retain_grad=False): if self.grad is None: self.grad = np.ones_like(self.data) funcs = [] seen_set = set() def add_func(f): if f not in seen_set: funcs.append(f) seen_set.add(f)...
Excuse me When I coding with Colab and call DeZero,it show AttributeError  How do I deal with YHX
As described in the title. I think it should be a typo by the author.
In the implementation of MatMul, the used dot does not conform to the behavior of matrix multiplication in Torch, especially it is not suitable for cases with dimensions higher than...