From d6b06f555b0a5370ca12f5a419ed354e906b8cfd Mon Sep 17 00:00:00 2001 From: 8bitmp3 <19637339+8bitmp3@users.noreply.github.com> Date: Thu, 11 Apr 2024 11:53:12 +0100 Subject: [PATCH] Update TF 2 and Keras in Video classification tutorial --- site/en/tutorials/video/video_classification.ipynb | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/site/en/tutorials/video/video_classification.ipynb b/site/en/tutorials/video/video_classification.ipynb index 9356c7cc9d3..4265b6387e3 100644 --- a/site/en/tutorials/video/video_classification.ipynb +++ b/site/en/tutorials/video/video_classification.ipynb @@ -84,9 +84,7 @@ "## Setup\n", "\n", "Begin by installing and importing some necessary libraries, including:\n", - "[remotezip](https://github.com/gtsystem/python-remotezip) to inspect the contents of a ZIP file, [tqdm](https://github.com/tqdm/tqdm) to use a progress bar, [OpenCV](https://opencv.org/) to process video files, [einops](https://github.com/arogozhnikov/einops/tree/master/docs) for performing more complex tensor operations, and [`tensorflow_docs`](https://github.com/tensorflow/docs/tree/master/tools/tensorflow_docs) for embedding data in a Jupyter notebook.\n", - "\n", - "**Note**: Use TensorFlow 2.10 to run this tutorial. Versions above TensorFlow 2.10 may not run successfully." + "[remotezip](https://github.com/gtsystem/python-remotezip) to inspect the contents of a ZIP file, [tqdm](https://github.com/tqdm/tqdm) to use a progress bar, [OpenCV](https://opencv.org/) to process video files, [einops](https://github.com/arogozhnikov/einops/tree/master/docs) for performing more complex tensor operations, and [`tensorflow_docs`](https://github.com/tensorflow/docs/tree/master/tools/tensorflow_docs) for embedding data in a Jupyter notebook." ] }, { @@ -98,8 +96,7 @@ "outputs": [], "source": [ "!pip install remotezip tqdm opencv-python einops \n", - "# Install TensorFlow 2.10\n", - "!pip install tensorflow==2.10.0" + "!pip install -U tensorflow keras" ] }, {