DeepLearningwithPython icon indicating copy to clipboard operation
DeepLearningwithPython copied to clipboard

Machine Learning and Data Science study group starting Sep'2018

Results 6 DeepLearningwithPython issues
Sort by recently updated
recently updated
newest added

原書ch3 在 github 中的 3.5-classifying-movie-reviews.ipynb 中執行到: import matplotlib.pyplot as plt acc = history.history['acc'] val_acc = history.history['val_acc'] 時會遇到兩個: KeyError: 'acc' KeyError: 'val_acc' 需修改爲: acc = history.history['binary_accuracy'] val_acc = history.history['val_binary_accuracy']

question

在 KDNuggets 上看到一篇關於 hyperas 的教學文(包括 colab),做分享。 https://www.kdnuggets.com/2018/12/keras-hyperparameter-tuning-google-colab-hyperas.html 另外在八月則有一篇為 autokeras 的教學文,若有人使用過這兩個 packages,可以分享一下心得。

enhancement

add an youtube video "How deep learning neural works"

9/22 第二次讀書會(Chapter 2)現場提問 在 ["A First Look at a Neural Network"](https://github.com/fchollet/deep-learning-with-python-notebooks/blob/master/2.1-a-first-look-at-a-neural-network.ipynb) note book 中,為何要將所有的灰階像素除以 255?(code example 如下)? ``` train_images = train_images.reshape((60000, 28 * 28)) train_images = train_images.astype('float32') / 255 test_images...

question

神經網路在訓練時,權重是什麼時候做更新的(經過多少學習數量)? - 每一筆資料? - 每batch_size筆資料? - 每一epoch資料? 經過不同學習數量做更新會造成什麼差異/優劣?

question

## 可以在哪裡提問? 1. ![f77523ba-78d4-4e69-8c3e-220327d2d590](https://user-images.githubusercontent.com/34334222/46125257-e3d48100-c25a-11e8-9c93-81fac933d096.jpg) 2. ![fdb44f7c-e236-41b3-8151-86636184a4cf](https://user-images.githubusercontent.com/34334222/46125270-f77fe780-c25a-11e8-955b-088def567c1c.jpg) ## 提問要注意哪些東西? ![2dfb9a00-9dd0-446a-8a09-b9fd762f5e5e](https://user-images.githubusercontent.com/34334222/46125296-12525c00-c25b-11e8-8c82-17cfb82e3d94.jpg) ## 提問範例 ### 讀書會現場提問(含連線者) >## 描述問題 >## 目前小組討論的想法 ### 非現場提問 >## 簡單一句話描述你的問題 >## 你的執行環境 >## 你預期的結果應該是? >## 是否知道/猜測問題發生的原因? >## 有無任何錯誤訊息 有程式碼或圖片可以把問題傳達的更清楚...

good first issue