106 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
90
views
Error in importing latest DeepSpeechModel: CreateModel failed with 'Failed to initialize memory mapped model.' (0x3000)
Thanks for your time checking my post.
In my Django project I created an API which is supposed be to trigged in view function where it runs the most recent deepspeech version (DeepSpeech: v0.9.3-0).
...
0
votes
1
answer
150
views
Mozilla deepspeech from deepspeech import Model not working
Im trying to use mozilla deepspeech to transcribe text however im running into issues importing the Model module.
here is my code
from deepspeech.model import model
model_file_path='deepspeech-0.9.3-...
0
votes
0
answers
67
views
Why building a new scorer outputs an empty string for deepspeech 0.9.3
I am trying to create a limited corpus and train a language model to use for a deepspeech scorer.
I have followed the information provided in the docs here
I read a helpful guide posted for an older ...
1
vote
1
answer
289
views
Importing deepspeech error: Module not found [closed]
I am trying to install DeepSearch library so that I can use the pretrained model to build the Speech to Text Project.
ModuleNotFoundError Traceback (most recent call last)
<...
0
votes
0
answers
118
views
Error Training Deepspeech inside Docker with Ubuntu 20.04 integration on Windows 10 (Nvidia Gpu Rtx 3090)
I'm working with Mozilla DeepSpeech in a Docker environment and have encountered an error during training. I'm seeking assistance to resolve this issue.
System Setup:
Docker environment on a Windows ...
0
votes
0
answers
630
views
how to install DeepSpeech (2023)
I understand DeepSpeech project is not being maintained now hence it cannot be installed using pip. I get the following error when trying to install using python3 setup.py install after cloning the ...
0
votes
1
answer
75
views
When running DeepSpeech training on Windows, I encountered an error with multiple processes accessing one memory at the same time
Running on pycharm yielded the following error,what should I do?
The following is the error message:
Windows fatal exception: access violation
Thread 0x000013c0 (most recent call first):
File "E:\...
1
vote
2
answers
3k
views
Unable to install the deepspeech library from pip. Can't find the module
I am attempting to install the Deepspeech library for Python on my Ubuntu 22.04 system.
I've created a virtual environment and then run pip install deepspeech. However, all I get back is the ...
0
votes
0
answers
90
views
stt.node version incompatible with electron
I'm getting below error when trying to launch the application.
This is after I deleted node_modules and re-ran npm i to pull packages again
App threw an error during load
node_modules/electron/dist/...
3
votes
0
answers
1k
views
Install DeepSpeech on Mac M1
At the moment I need to install and run DeepSpeech on my local.
Can someone help me how with installing DeepSpeech on my Mac. I have already installed Python 3.10.0 but it seems like this version do ...
13
votes
5
answers
16k
views
Cannot install deepspeech of python
I want to use DeepSpeech of Mozilla on my Linux 22.04 system, following this website:
https://deepspeech.readthedocs.io/en/r0.9/?badge=latest
At the very beginning line, at
pip3 install deepspeech
...
1
vote
0
answers
331
views
Deepspeech NodeJs Module_Not_Found Err
Cannot Run the following code, everything I try to run it I run it into the issue of
node:internal/modules/cjs/loader:959
throw err;
Is this issue with me using Windows, or is it that my packages ...
0
votes
1
answer
140
views
Can't import deepspeech on kivy for android
I am using kivy to create an android app. I need to install the deepspeech framework, however, in order for deepspeech to be installed it is necessary to create a recipe.
I created a recipe and built ...
1
vote
0
answers
77
views
Can Deepspeech confidence be used to calculate accuracy?
In Deepspeech documentation, definition of confidence is:
Confidence is roughly the sum of the acoustic model logit values for each timestep/character that contributed to the creation of this ...
0
votes
1
answer
510
views
Can speech diarization be be integrated with deepspeech?
In an online meeting such as Google Meet/ Zoom, I want to detect change of speaker and then transcribe the audio for different speakers.
I am using Deepspeech model for speech to text. I have fine-...