Created using Colab

This commit is contained in:
udlbook
2024-04-18 15:49:55 -04:00
parent 80732b29bc
commit 51424b57bd

View File

@@ -4,7 +4,6 @@
"metadata": { "metadata": {
"colab": { "colab": {
"provenance": [], "provenance": [],
"authorship_tag": "ABX9TyOmndC0N7dFV7W3Mh5ljOLl",
"include_colab_link": true "include_colab_link": true
}, },
"kernelspec": { "kernelspec": {
@@ -235,8 +234,8 @@
"levels = 40\n", "levels = 40\n",
"ax.contour(phi0_mesh, phi1_mesh, all_losses ,levels, colors=['#80808080'])\n", "ax.contour(phi0_mesh, phi1_mesh, all_losses ,levels, colors=['#80808080'])\n",
"ax.set_ylim([1,-1])\n", "ax.set_ylim([1,-1])\n",
"ax.set_xlabel('Intercept, $\\phi_0$')\n", "ax.set_xlabel(r'Intercept, $\\phi_0$')\n",
"ax.set_ylabel('Slope, $\\phi_1$')\n", "ax.set_ylabel(r'Slope, $\\phi_1$')\n",
"\n", "\n",
"# Plot the position of your best fitting line on the loss function\n", "# Plot the position of your best fitting line on the loss function\n",
"# It should be close to the minimum\n", "# It should be close to the minimum\n",
@@ -250,4 +249,4 @@
"outputs": [] "outputs": []
} }
] ]
} }