Skip to content

Instantly share code, notes, and snippets.

@simon376
simon376 / email_callback.py
Last active January 25, 2022 18:15
Keras E-Mail Callback mit yagmail
import yagmail
import tensorflow as tf
from tensorflow import keras
class EmailCallback(keras.callbacks.Callback):
message_contents = ""
yag: yagmail.SMTP
def __init__(self, to: str="user@gmail.com", train_size=None, test_size=None) -> None: