Dive-into-DL-TensorFlow2.0
Dive-into-DL-TensorFlow2.0 copied to clipboard
本项目将《动手学深度学习》(Dive into Deep Learning)原书中的MXNet实现改为TensorFlow 2.0实现,项目已得到李沐老师的认可
at file 9.1_image-augmentation.ipynb show_images(x[0:32][0], 4, 8, scale=0.8); should be changed: show_images(x[0:32], 4, 8, scale=0.8);
https://trickygo.github.io/Dive-into-DL-TensorFlow2.0/#/chapter04_DL-computation/4.3_deferred-init 2021年2月16日 11点,提示404 - Not found
去掉device后报错: 
 上面是GoogLeNet的源码运行结果
缺失章节“机器翻译”
[test-rgb2label.pdf](https://github.com/TrickyGo/Dive-into-DL-TensorFlow2.0/files/5728510/test-rgb2label.pdf) The result for [0,0,128] should be labeled as 4, but got the 0. Hope to get your reply, thank you! The input image from VOC2012\SegmentationClass\2007_000061.png 
```python with tf.GradientTape(persistent=True) as g: g.watch(x) y = x * x z = y * y dz_dx = g.gradient(z, x) # 108.0 (4*x^3 at x = 3) dy_dx = g.gradient(y,...
