Skip to main content

keras custom callback for slack

Project description

keras_callback_slack

keras custom callback for slack

Installation

$ pip install keras-callback-slack

Usage

from keras_callback_slack import SlackNotifications

slack_notification = SlackNotifications(
    'WEBHOOK_URL', token='TOKEN', channel='CHANNEL', attachment_image=True)

model.fit(x, y, batch_size=64, epochs=5, callbacks=[slack_notification])

Arguments

  • url : string - Slack Incoming Webhook URL
  • token : string(Optional) - Slack bot token
    This will be needed when uploading the graph.
  • channel : string(Optional) - Slack channel ID
    The ID of the channel to which you want to upload the graph. Specify the same channel as the webhook.
  • loss_metrics : list(Optional) - Loss metrics you want to monitor.
    ex. ['loss', 'val_loss']
  • acc_metrics : list(Optional) - Acc metrics you want to monitor.
    ex. ['acc', 'val_acc']
  • attachment_image : bool(Optional) - Whether to upload the graph.
  • period : int(Optional) - Notification interval (epochs).

Example

Screenshot from 2021-05-27 00-47-49


Screenshot from 2021-05-27 00-48-31

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

keras_callback_slack-0.0.5-py3-none-any.whl (4.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page