adeept / adeept_picarpro

MIT License
7 stars 13 forks source link

applying tensorflow #13

Open anggou opened 1 year ago

anggou commented 1 year ago

I want to apply CNN with h5 model to this car camera. So, I modified the code a bit and tried to use tensorflow. I did "pip install tensorflow" and ran the code, but an error occurred saying that tensorflow was not installed continuously. Maybe it's because I installed the legacy version. Could you give me some advice on how to apply tensorflow here?

vsancnaj commented 1 year ago

Hello @anggou , this is my first time helping here with issues. Could you please direct me were I can find the files or code of what you tried?

LazaUK commented 1 year ago

Hello @anggou, you may try pip install --upgrade tensorflow, so that it upgrades the components installed.

After that, please try these 2 lines of Python code and share the outcomes of your execution:

import tensorflow as tf
print(tf.__version__)