Example¶
Requirements¶
It is recommended make virtualenv and install all next packages in this virtualenv.
ml-research-toolkit==0.0.5
Include packages importing.
from ml_research_toolkit.notifications import TelegramClient
from ml_research_toolkit.datasets import UCI
Datasets¶
datasets = UCI()
datasets.get_meta()
dataset = datasets.get_dataset('Abalone', enforce=True)
dataset['data'], dataset['meta']
Notifications¶
Initialise Bot Wraper¶
notificator = TelegramClient(token='Your token', name='Name of proccess')
Send notification¶
Before starting sending messages, you need to write message /start
to the bot in the messenger. This is necessary so that the bot knows who needs information on a given task.
notificator.send_text('I send my first message!!!!')