Is there any overfit or data leakage in my code?
The code about forecasting energy. I wrote a code and when I examined it, there seems to be no data leakage. But after a while, the MAPE value increases considerably in its predictions about the future. Can you check for me if there is data leakage in the code I wrote? (I checked from gpt but im not sure there is correct. :))
How to build Ai with the help of python alone , I wanna build something like chatbot with inbuilt voice for commands but don’t know where to start?
Can’t Find a way to to build Ai with python
error after installing pyttsx3 module in python
import pyttsx3 engine = pyttsx3.init(‘sapi5’) voices = engine.getProperty(‘voices’) engine.setProperty(‘voices’,voices[0].id) def speak(audio): engine.say(audio) engine.runAndWait() if __name__ == “__main__”: speak(“Hi, I am Veraa”) i was trying to use pyttsx3 module to make jarvis speak but my system said that pyttsx3 is not insatlled and it throwed a MoudleNotFoundError even after install the module python artificial-intelligence ml New […]