TrickyGo / Dive-into-DL-TensorFlow2.0

本项目将《动手学深度学习》(Dive into Deep Learning)原书中的MXNet实现改为TensorFlow 2.0实现,项目已得到李沐老师的认可
https://trickygo.github.io/Dive-into-DL-TensorFlow2.0/#/
Apache License 2.0
3.78k stars 820 forks source link

I think your code should be changed when indexing array #84

Open thuongle2210 opened 3 years ago

thuongle2210 commented 3 years ago

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);