Keras IntegrationΒΆ

Step 1 Import

import jovian
from jovian.callbacks.keras import JovianKerasCallback

Step 2 Pass the callback to the fit method.

# To record logs of every epoch and to notify on slack
jvn_cb = JovianKerasCallback(arch_name='resnet18', every_epoch=True, notify=True)
model.fit(x_train, y_train, ...., callbacks=[jvn_cb])

For more details visit Keras callback API reference

keras callback log

Step 3 Perform jovian commit

jovian.commit(message="keras callback")

Step 4 View and compare experiment logs

View all the log of a certain version is the Records Tab

keras records tab

Compare the results of many expriments that you have performed. For more usage of compare details visit Compare

compare records