Skip to content

Instantly share code, notes, and snippets.

@CleanPegasus
Created October 17, 2020 14:49
Show Gist options
  • Save CleanPegasus/a64343e7535fcd1634efbf11edbe5bc6 to your computer and use it in GitHub Desktop.
Save CleanPegasus/a64343e7535fcd1634efbf11edbe5bc6 to your computer and use it in GitHub Desktop.
from tensordash.tensordash import Tensordash
histories = Tensordash(
ModelName = '<YOUR_MODEL_NAME>',
email = '<YOUR_EMAIL_ID>',
password = '<YOUR PASSWORD>')
try:
model.fit(
X_train,
y_train,
epochs = epochs,
validation_data = validation_data,
batch_size = batch_size,
callbacks = [histories])
except:
histories.sendCrash()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment