Loading...

Matplotlib

The most widely used Python plotting library - substrate for most other plot libs.

When to use: Training curves, ROC plots, EDA - anywhere a figure is needed.

Example: fig, ax = plt.subplots(); ax.plot(epochs, loss); ax.set_xlabel("epoch"); fig.savefig("loss.png").

More Python for ML Glossary terms