|
21 | 21 | "\n",
|
22 | 22 | "We've trained a fair few models now on the journey to making FoodVision Mini (an image classification model to classify images of pizza, steak or sushi).\n",
|
23 | 23 | "\n",
|
24 |
| - "And so far we've keep track of them via Python dictionaries.\n", |
| 24 | + "And so far we've kept track of them via Python dictionaries.\n", |
25 | 25 | "\n",
|
26 | 26 | "Or just comparing them by the metric print outs during training.\n",
|
27 | 27 | "\n",
|
|
83 | 83 | "source": [
|
84 | 84 | "## Different ways to track machine learning experiments \n",
|
85 | 85 | "\n",
|
86 |
| - "There are as many different ways to track machine learning experiments as there is experiments to run.\n", |
| 86 | + "There are as many different ways to track machine learning experiments as there are experiments to run.\n", |
87 | 87 | "\n",
|
88 | 88 | "This table covers a few.\n",
|
89 | 89 | "\n",
|
|
92 | 92 | "| Python dictionaries, CSV files, print outs | None | Easy to setup, runs in pure Python | Hard to keep track of large numbers of experiments | Free |\n",
|
93 | 93 | "| [TensorBoard](https://www.tensorflow.org/tensorboard/get_started) | Minimal, install [`tensorboard`](https://pypi.org/project/tensorboard/) | Extensions built into PyTorch, widely recognized and used, easily scales. | User-experience not as nice as other options. | Free |\n",
|
94 | 94 | "| [Weights & Biases Experiment Tracking](https://wandb.ai/site/experiment-tracking) | Minimal, install [`wandb`](https://docs.wandb.ai/quickstart), make an account | Incredible user experience, make experiments public, tracks almost anything. | Requires external resource outside of PyTorch. | Free for personal use | \n",
|
95 |
| - "| [MLFlow](https://mlflow.org/) | Minimal, install `mlflow` and starting tracking | Fully open-source MLOps lifecycle management, many integrations. | Little bit harder to setup a remote tracking server than other services. | Free | \n", |
| 95 | + "| [MLFlow](https://mlflow.org/) | Minimal, install `mlflow` and start tracking | Fully open-source MLOps lifecycle management, many integrations. | Little bit harder to setup a remote tracking server than other services. | Free | \n", |
96 | 96 | "\n",
|
97 | 97 | "<img src=\"https://raw.githubusercontent.com/mrdbourke/pytorch-deep-learning/main/images/07-different-places-to-track-experiments.png\" alt=\"various places to track machine learning experiments\" width=900/>\n",
|
98 | 98 | "\n",
|
|
0 commit comments