All Projects → qubvel → Keras_telegram_callback

qubvel / Keras_telegram_callback

Telegram-bot callback for your Keras model

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Keras telegram callback

Vk To Telegram
Utility to forward posts from VK through callback API to telegram channel or chat
Stars: ✭ 24 (-20%)
Mutual labels:  callback, telegram
Tikvidbot
🎵🤖 TikTok Any Video Downloader Telegram Bot
Stars: ✭ 20 (-33.33%)
Mutual labels:  telegram
Micha
Client lib for Telegram bot api
Stars: ✭ 18 (-40%)
Mutual labels:  telegram
Disatbot
DABOT: Disaster Attention Bot
Stars: ✭ 26 (-13.33%)
Mutual labels:  telegram
Telegram Standup Bot
Very simple telegram bot for submitting daily standups
Stars: ✭ 20 (-33.33%)
Mutual labels:  telegram
Money bot
Docker-containered bot. Added to a group chat, she replies to any message containing price and currency pattern. Live!
Stars: ✭ 8 (-73.33%)
Mutual labels:  telegram
Tlsharp
Telegram client library implemented in C#
Stars: ✭ 895 (+2883.33%)
Mutual labels:  telegram
Telegram Notifier
Provides Telegram integration for Symfony Notifier.
Stars: ✭ 30 (+0%)
Mutual labels:  telegram
Tele.cr
A convenient Telegram Bot framework 🤖
Stars: ✭ 14 (-53.33%)
Mutual labels:  telegram
Taskmanager
A simple、 light(only two file)、fast 、powerful 、easy to use 、easy to extend 、 Android Library To Manager your AsyncTask/Thread/CallBack Jobqueue ! 一个超级简单,易用,轻量级,快速的异步任务管理器,类似于AsyncTask,但是比AsyncTask更好用,更易控制,从此不再写Thread ! ^_^
Stars: ✭ 25 (-16.67%)
Mutual labels:  callback
Yii2 Telegram Log
Telegram log target for Yii 2
Stars: ✭ 24 (-20%)
Mutual labels:  telegram
Pyrobot
Telegram Userbot powered by Pyrogram
Stars: ✭ 23 (-23.33%)
Mutual labels:  telegram
Pytelbot
A playful bot in telegram
Stars: ✭ 12 (-60%)
Mutual labels:  telegram
Torpedo
Pluggable, multi-network asynchronous chat bot written in Go
Stars: ✭ 19 (-36.67%)
Mutual labels:  telegram
Zcoil
Elegant access to data
Stars: ✭ 20 (-33.33%)
Mutual labels:  callback
Mypackbot
🤖 Your own unlimited pack of Telegram-stickers
Stars: ✭ 18 (-40%)
Mutual labels:  telegram
Xye Bot
Бот Хуификатор
Stars: ✭ 26 (-13.33%)
Mutual labels:  telegram
Rssbot
Lightweight Telegram RSS bot for notifications only. 用于消息通知的轻量级 Telegram RSS 机器人
Stars: ✭ 952 (+3073.33%)
Mutual labels:  telegram
Fredy
❤️ Fredy - [F]ind [R]eal [E]states [D]amn Eas[y] - Let the robot do the work...
Stars: ✭ 29 (-3.33%)
Mutual labels:  telegram
Logger Telegram Backend
A logger backend for Telegram
Stars: ✭ 13 (-56.67%)
Mutual labels:  telegram

Keras callback in Telegram

Telegram-bot callback for your Keras model

This module allows your model to send learning history to your chat in Telegram messenger.

Configure your Telegram Callback

To start use this callback you need fo register bot in telegram and get your telegram_id. Follow instructions below.

Step 1. Register your telegram bot.

  • Find BotFather in Telegram.
  • Follow BotFather instructions to register your bot in a few steps and get token.

Step 2. Get your ID.

  • Find @my_id_bot bot in Telegram and get your telegram_id. If bot is not working get telegram_id manually (step 2a).

Step 2a. Get your ID (optional).

  • Find your bot in telegram and send message 'hello!'
  • Paste in your browser api.telegram.org/bot<token>/getUpdates (use token you get in previous step), if you did everything correctly you will recive a JSON where you can find your telegram_id.

Example

from .callbacks import TelegramCallback

# load data, define and compile model
...

# create callback
config = {
    'token': '556983321:AAHO-bSWaIqcvHL91Xw12X18OWczFIpY1s0',   # paste your bot token
    'telegram_id': 123456789,                                   # paste your telegram_id
}

tg_callback = TelegramCallback(config)

# start training
model.fit(x, y, batch_size=32, callbacks=[tg_callback])

Congratulations! Now you will recive logs (losses, metrics, lr, etc.) in Telegram!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].