Markmahugu / Sign-Language-To-Text-and-Speech-Conversion-master

This Python project uses computer vision and machine learning to translate sign language into text and speech, bridging the gap between hearing and hearing-impaired communities.
1 stars 0 forks source link

problem with detection #1

Open sopanpatil88 opened 2 months ago

sopanpatil88 commented 2 months ago

import keras.models could not be resolved error solution

Markmahugu commented 2 months ago

It looks like you're facing the "import keras.models could not be resolved" error. Here are a few quick solutions:

Install Keras and TensorFlow: Run:

bash Copy code pip install keras tensorflow Check Your Python Environment: Ensure you're using the correct virtual environment in your IDE (VSCode, PyCharm, etc.).

Update Dependencies: Run:

bash Copy code pip install --upgrade keras tensorflow Use Correct Imports: If using TensorFlow 2.x:

python Copy code from tensorflow.keras.models import Sequential Restart Your IDE: After installation, restart your IDE to ensure it recognizes the packages.

Let me know if this works!