colab でプッシュ通知

colab で2-3時間の training を動かしているときにプッシュ通知があると便利。 training 終了や例外がでたときにスマホにプッシュ通知が来るようにできる。
https://www.pushbullet.com/ を設定・アプリインストール。API Key を発行。こんなに簡単にプッシュ通知が実現。API Key は秘密にすべきなので Google Drive におくのが良いでしょう。

!pip install pushbullet.py
from pushbullet import Pushbullet
pb = Pushbullet('api_key')
push = pb.push_note("This is the title", "This is the body")

learning rate リストア問題

Colab で長時間トレーニングしていると、必ず途中でトレーニングを止めてレストアする必要が出てくる。そのときに training_rate をうまく restore する方法。

これ。 https://stackoverflow.com/questions/44886669/how-to-restore-the-learning-rate-in-tf-from-previously-saved-checkpoint

2018年読んだ本を記録する