Notifications for ML libraries (Keras, Chainer) using telegram bot
Project description
NotifyKer
Notifier and manager bot for ML libraries: Keras and Chainer
Features:
- Get status of your training: epoch, metrics
- Temporarily suspend training and then continue (for example, to free up the C(G)PU for another task (not the memory))
- Interrupt training immediately
- Get updates per epoch/batch with metrics
- Set verbose level:
- 0 - only completion message;
- 1 - execution status per epoch
- 2 - execution status per epoch with on-line metrics (like Keras default output)
- Easy to build your own notifier and callback
How to use
Set TOKEN and PROXY while creating the instance of NotifierTelegramMenu or NotifierTelegram
Chainer
from notifyker import NotifierTelegramMenu
from notifyker.chainer import ExtensionNotifierReport
TOKEN = 'xxxx:yyy'
PROXY = {
'proxy_url': 'socks5h://ip:port',
'urllib3_proxy_kwargs': {'username': 'username', 'password': 'password'}}
# use NotifierTelegram in order to work without keyboard menu
nfk = NotifierTelegramMenu(TOKEN=TOKEN, PROXY=PROXY)
chainer_not = ExtensionNotifierReport(notifier=nfk)
...
trainer.extend(chainer_not)
trainer.run()
Keras
from notifyker import NotifierTelegramMenu
from notifyker.keras import CallbackSimple
TOKEN = 'xxxx:yyy'
PROXY = {
'proxy_url': 'socks5h://ip:port',
'urllib3_proxy_kwargs': {'username': 'username', 'password': 'password'}}
# use NotifierTelegram in order to work without keyboard menu
nfk = NotifierTelegramMenu(TOKEN=TOKEN, PROXY=PROXY)
callback = CallbackSimple(notifier=nfk)
model.fit(...
callbacks=[callback])
Set PROXY = None if not required
Start
Enter /start command to your telegram bot. Now it started and you receive update messages.
Menu
Enter /menu to open keyboard menu with following options:
- Status - get the status of the last completed epoch
- Verbose - change verbose level or leave unchanged
Level 0:
Level 2:
- Pause - suspend training process (with option block on_batch_end callback method)
- Continue - continue suspended training process
- Interrupt - stop training and stop bot updates
Commands
Also, you can use these commands directly by typing:
- /status
- /verbose - only get the current level of verbose (TODO: opportunity to change)
- /pause
- /continue
- /interrupt
- /help - get the description of commands|options
Your own notifier
import base class (NotifierBase or NotifierTelegram)
from notifyker import NotifierTelegram
Then create your own class with inheritance and implement/reimplement methods. Note: if you add some new command - add it to handler
from telegram.ext import CommandHandler # if required
class MyOwnNotifyker(NotifierTelegram):
def my_own_hello(self, bot, update):
"""
Send hello in reply
"""
self.updater.reply_text('Hello!')
def handlers(self):
super().handlers()
self.updater.dispatcher.add_handler(CommandHandler('hello', self.my_own_hello))
That's it!
Your own callback
Also, you can use your own callback in the same way. Let's say you want only to know when the training ends.
import time
from notifyker import CallbackBase
class MyOwnCallback(CallbackBase):
def on_training_end(self):
end_time = time.ctime(int(time.time()))
self.notifier.message('Training completed {} in {}'.format(tag, end_time))
Register your own telegram bot
In order to create your own telegram bot - talk to t.me/botfather - this is official bot to... create bots.
Also, you'll get a TOKEN of your bot, that will be used in the Notifier latter. Click on the name of your bot and the chat will open with your bot.
Also, BotFather allows to manage bot profile image, description, privacy options, etc.
Official introduction is here: https://core.telegram.org/bots
Notifier for TF
It is possible to use this for tensorflow, but you should add necessary functions in your tf code. Just create:
nfk = NotifierTelegramMenu(TOKEN=TOKEN, PROXY=PROXY)
For example, in order to implement pause, after your epoch add:
if 'p' in nfk.flags_batch:
self.notifier.flags_batch.remove('p')
while 'c' not in nfk.flags_batch and 's' not in nfk.flags_batch:
time.sleep(10)
You can look at callbackNK/callback_simple.py to find more information about implementation.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file notifyker-2.0.3.tar.gz
.
File metadata
- Download URL: notifyker-2.0.3.tar.gz
- Upload date:
- Size: 9.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.20.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.19.5 CPython/3.5.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c2d4e5fe25694b88d179d933aedd9bbfa0b82b5f45efa077cb14bc1a75609f58 |
|
MD5 | 7537a71fd7244b022360b0b4eaa4ba3d |
|
BLAKE2b-256 | 903f7b4f9c15559959cde826a01ac8a8c4cadb088e16f2621f11e8d22a3c2167 |
File details
Details for the file notifyker-2.0.3-py3-none-any.whl
.
File metadata
- Download URL: notifyker-2.0.3-py3-none-any.whl
- Upload date:
- Size: 12.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.20.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.19.5 CPython/3.5.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 845dbe31bd2c6354b4d8ba007df363b5af909c0051d0206cbd117356ebbbcb1e |
|
MD5 | 147d6447c28650850001cc460d82960a |
|
BLAKE2b-256 | aaaf750a3f9cc3c2413625c7d5918de4c9fb471cd2a13b47056dabe22089f84a |