Relative Content

Tag Archive for pythonartificial-intelligenceml

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. :))

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 […]