hankp46

Results 8 issues of hankp46

I'm trying to install Tensorflow on a computer with a J1800 CPU. I know this CPU does not have the AVX extension. I'm trying to find a wheel package of...

When running the following program: import multiprocessing import pyttsx3 from multiprocessing import Process class _TTS: def __init__(self): self.engine = pyttsx3.init('espeak') self.engine.setProperty('rate', 175) def start(self,text_): self.engine.say(text_) self.engine.runAndWait() def Speakit(words): print('running Speakit')...

bug

**Your OS (including version) where you are running AlexaPi:** Raspberry Pi OS_``` ``` **Your hardware platform and model you are running on:** ```Raspberry Pi4 ``` **Python release (`python3 --version`):** ```...

Trying to use a USB mic: This is code in Config.Yaml ****# Name of your microphone device: "raspberrypi" **# leave empty for default****** input_device: "plughw:3,0" On AlexaPi start get this...

. **Output of the [audio debugging script](https://github.com/alexa-pi/AlexaPi/wiki/Audio-setup-&-debugging#audio-debugging-script).** CRITICAL: Your input_device 'plughw:1,0' is invalid. Use one of the following: May 01 10:04:41 raspberrypi python3[7736]: USB PnP Sound Device: Audio (plughw:1,0) **Your...

Trying to run a simple version of TTS `from TTS.api import TTS tts = TTS(model_name="tts_models/en/ljspeech/vits", progress_bar=False, gpu=False) tts.tts_to_file(text="my name is hank.", file_path='/home/hank/DYIRobot/ttstest1.wav') Receive following message: `home/hank/.local/lib/python3.9/site-packages/torchaudio/compliance/kaldi.py:22: UserWarning: Failed to initialize...

### Is there an existing issue for this? - [X] I have searched the existing issues and checked the recent builds/commits ### What happened? Executed the following code: import asyncio,...

While running the following script: `from chatterbot import ChatBot bot = ChatBot( 'Maxine', storage_adapter='chatterbot.storage.SQLStorageAdapter', database_uri='sqlite:///database.sqlite3', logic_adapters=[ { 'import_path': 'chatterbot.logic.BestMatch', 'threshold': 0.95, 'default_response': 'what?' }, 'chatterbot.logic.MathematicalEvaluation', 'chatterbot.logic.TimeLogicAdapter' ], ) print('ask me...