Skip to content

Commit

Permalink
update dog vision v2
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdbourke committed Apr 4, 2024
1 parent afa336b commit 9d494d3
Showing 1 changed file with 17 additions and 14 deletions.
31 changes: 17 additions & 14 deletions section-4-unstructured-data-projects/end-to-end-dog-vision-v2.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,13 @@
"\n",
"For a quick rundown on how to use Google Colab, see their [introductory guide](https://colab.research.google.com/notebooks/basic_features_overview.ipynb) (it's quite similar to a Jupyter Notebook with a few different options).\n",
"\n",
"Google Colab also comes with many data science and machine learning libraries pre-installed, including TensorFlow.\n",
"Google Colab also comes with many data science and machine learning libraries pre-installed, including TensorFlow.\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"\n",
"### Getting a GPU\n",
"\n",
Expand All @@ -204,7 +210,7 @@
},
{
"cell_type": "code",
"execution_count": 2,
"execution_count": 3,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
Expand All @@ -215,21 +221,18 @@
},
"outputs": [
{
"data": {
"application/vnd.google.colaboratory.intrinsic+json": {
"type": "string"
},
"text/plain": [
"'2.15.0'"
]
},
"execution_count": 2,
"metadata": {},
"output_type": "execute_result"
"ename": "ModuleNotFoundError",
"evalue": "No module named 'tensorflow'",
"output_type": "error",
"traceback": [
"\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
"\u001b[0;31mModuleNotFoundError\u001b[0m Traceback (most recent call last)",
"Cell \u001b[0;32mIn[3], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m \u001b[38;5;21;01mtensorflow\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m \u001b[38;5;21;01mtf\u001b[39;00m\n\u001b[1;32m 2\u001b[0m tf\u001b[38;5;241m.\u001b[39m__version__\n",
"\u001b[0;31mModuleNotFoundError\u001b[0m: No module named 'tensorflow'"
]
}
],
"source": [
"# TK - TODO: Check compatibility with Keras 3.0 by installing tf-nightly, see: https://x.com/fchollet/status/1719448117064659352?s=20\n",
"import tensorflow as tf\n",
"tf.__version__"
]
Expand Down

0 comments on commit 9d494d3

Please sign in to comment.