I am currently trying to do object tracking with YOLOv4 and DeepSORT algorithm on Google Colab by utilizing this repository from the AIGuysCode.
Previously, everything was fine and the following command was utilized to install tensorflow 2.3.0 in order to run the save_model.py file and the rest of the object_tracker.py code.
!pip install tensorflow==2.3.0
However, currently tensorflow 2.3.0 is not available, and the following error is persistently occurring:
Looking in indexes: https://pypi.org/simple, https://us-python.pkg.dev/colab-wheels/public/simple/ ERROR: Could not find a version that satisfies the requirement tensorflow==2.3.0 (from versions: 2.5.0, 2.5.1, 2.5.2, 2.5.3, 2.6.0rc0, 2.6.0rc1, 2.6.0rc2, 2.6.0, 2.6.1, 2.6.2, 2.6.3, 2.6.4, 2.6.5, 2.7.0rc0, 2.7.0rc1, 2.7.0, 2.7.1, 2.7.2, 2.7.3, 2.7.4, 2.8.0rc0, 2.8.0rc1, 2.8.0, 2.8.1, 2.8.2, 2.8.3, 2.8.4, 2.9.0rc0, 2.9.0rc1, 2.9.0rc2, 2.9.0, 2.9.1, 2.9.2, 2.9.3, 2.10.0rc0, 2.10.0rc1, 2.10.0rc2, 2.10.0rc3, 2.10.0, 2.10.1, 2.11.0rc0, 2.11.0rc1, 2.11.0rc2, 2.11.0, 2.12.0rc0, 2.12.0rc1) ERROR: No matching distribution found for tensorflow==2.3.0
I attempted to upgrade to tensorFlow 2.5.0 or the most recent version offered by Colab.
However, the issue remains that only the initial frame is being tracked, and the subsequent frames are not being tracked, yielding a zero track.
As a beginner, I would appreciate any assistance, and thank you in advance for your help.