Creado con Colaboratory

This commit is contained in:
Glenn Jocher 2020-11-14 12:07:31 +01:00
parent fe341fa44d
commit cf581305db

10
tutorial.ipynb vendored
View File

@ -1010,7 +1010,7 @@
"id": "DLI1JmHU7B0l"
},
"source": [
"## Weights & Biases Logging (🚀 NEW)\n",
"## Weights & Biases Logging 🌟 NEW\n",
"\n",
"[Weights & Biases](https://www.wandb.com/) (W&B) is now integrated with YOLOv5 for real-time visualization and cloud logging of training runs. This allows for better run comparison and introspection, as well improved visibility and collaboration for teams. To enable W&B logging install `wandb`, and then train normally (you will be guided through setup on first use).\n",
"```bash\n",
@ -1077,9 +1077,9 @@
"id": "MDznIqPF7nk3"
},
"source": [
"from utils.utils import plot_results \n",
"plot_results(save_dir='runs/train/exp') # plot results.txt as results.png\n",
"Image(filename='results.png', width=800) "
"from utils.plots import plot_results \n",
"plot_results(save_dir='runs/train/exp') # plot all results*.txt as results.png\n",
"Image(filename='runs/train/exp/results.png', width=800)"
],
"execution_count": null,
"outputs": []
@ -1182,4 +1182,4 @@
"outputs": []
}
]
}
}