Skip to content

Instantly share code, notes, and snippets.

@zabop
Created July 17, 2021 21:18
Show Gist options
  • Save zabop/caddb894a3151d767cc420f3059b28ac to your computer and use it in GitHub Desktop.
Save zabop/caddb894a3151d767cc420f3059b28ac to your computer and use it in GitHub Desktop.
plt.figure(figsize=(8,6))
epochs = range(1, 21)
plt.plot(epochs, val_loss_values1, 'b', linewidth=5, label='Validation loss, ReLU, 16 neurons')
plt.plot(epochs, val_loss_values2, 'r', linewidth=5, label='Validation loss, Sigmoid, 16 neurons')
plt.plot(epochs, val_loss_values3, 'c', linewidth=5, label='Validation loss, ReLU, 64 neurons')
plt.plot(epochs, val_loss_values4, 'k', linewidth=5, label='Validation loss, Sigmoid, 64 neurons')
plt.title('Training and validation loss',fontsize=22)
plt.xlabel('Epochs',fontsize=18)
plt.ylabel('Loss',fontsize=18)
plt.tick_params(axis='both', which='major', direction='inout', length=15, labelsize=20)
plt.legend(fontsize=16,frameon=False)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment