deep-learning-from-scratch-3 icon indicating copy to clipboard operation
deep-learning-from-scratch-3 copied to clipboard

『ゼロから作る Deep Learning ❸』(O'Reilly Japan, 2020)

Results 15 deep-learning-from-scratch-3 issues
Sort by recently updated
recently updated
newest added

```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 ![q0724](https://github.com/user-attachments/assets/e8664cd6-2896-4170-9179-faa37f65b334) 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...