Hello!
I am new to tensorflow and I am working on creating an object detection model. I am following along with a video found on youtube linked here:
[https://www.youtube.com/watch?v=yqkISICHH-U]
A walkthrough tutorial along with the code I have been using can be found here:
[GitHub - nicknochnack/TFODCourse]
I am finding that as I am going through the tutorial I am coming across a lot of issues in regards to the migration to tensorflow 2. Many of them related to tf.contrib which I have manually fixed on my own. However, there are some that are just extremely tedious and I do not know how to fix them. For example, I am now currently running into the the following error:
ModuleNotFoundError: No module named 'tensorflow_io'
When I try to install tensorflow_io from the command prompt in my virtual environment, I get the following error message.
ERROR: Could not find a version that satisfies the requirement tensorflow_io (from versions: none)
ERROR: No matching distribution found for tensorflow_io
I tried reverting back to tensor flow version 2.16 but this still did not resolve the issue.
So all in all, I have the following questions.
- Does anyone know how to solve the tensorflow_io installation issue above?
- Is the tutorial that I am following outdated?
- If so, can anyone point me to another resource I could use to help train an object detection model?
Thank you in advance for any advice that you can spare!