Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Model Zoo unavailable (404) #53

Closed
benpicco opened this issue Mar 24, 2023 · 3 comments
Closed

Model Zoo unavailable (404) #53

benpicco opened this issue Mar 24, 2023 · 3 comments

Comments

@benpicco
Copy link

The link to the model zoo no longer works, it's not possible to install a model and there is also no manual installation option (#26)

@codegraft
Copy link

Just ran into this myself. As a workaround it is possible to POST a model card (

Model card is in the format
) to /install_model with stt-model-manager running.

For example to install the "English STT v1.0.0 (Huge Vocabulary)" model

{
    "name": "English STT v1.0.0 (Huge Vocabulary)",
    "language": "en",
    "version": "v1.0.0",
    "creator": "Coqui",
    "acoustic": "https://coqui.gateway.scarf.sh/english/coqui/v1.0.0-huge-vocab/model.tflite",
    "scorer": "https://coqui.gateway.scarf.sh/english/coqui/v1.0.0-huge-vocab/huge-vocabulary.scorer"
}

For example on Windows with stt-model-manager running I used curl like this (change 38450 to whatever port stt-model-manager is using): curl --header "Content-Type: application/json" --request POST --data "{\"name\": \"English STT v1.0.0 (Huge Vocabulary)\", \"language\": \"en\", \"version\": \"v1.0.0\", \"creator\": \"Coqui\", \"acoustic\": \"https://coqui.gateway.scarf.sh/english/coqui/v1.0.0-huge-vocab/model.tflite\", \"scorer\": \"https://coqui.gateway.scarf.sh/english/coqui/v1.0.0-huge-vocab/huge-vocabulary.scorer\"}" http://127.0.0.1:38450/install_model

On Linux the following should do the same (untested)

curl --header "Content-Type: application/json" \
  --request POST \
  --data '{"name": "English STT v1.0.0 (Huge Vocabulary)", "language": "en", "version": "v1.0.0", "creator": "Coqui", "acoustic": "https://coqui.gateway.scarf.sh/english/coqui/v1.0.0-huge-vocab/model.tflite", "scorer": "https://coqui.gateway.scarf.sh/english/coqui/v1.0.0-huge-vocab/huge-vocabulary.scorer"}' \
  http://127.0.0.1:38450/install_model

@KnechtNoobrecht
Copy link

KnechtNoobrecht commented Aug 6, 2023

And how do i do that without knowing what models exist? And how isn't this solved by now? The documentation still links to this non-existent site and doesn't provide alternatives. This is terrible!

@reuben
Copy link
Contributor

reuben commented Aug 7, 2023

See the note in the README, the models are hosted in the releases of this repo: https://github.com/coqui-ai/stt-model-manager#coqui-stt-model-manager

@reuben reuben closed this as not planned Won't fix, can't repro, duplicate, stale Aug 7, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants