Dadangdut33 / Speech-Translate

A realtime speech transcription and translation application using Whisper OpenAI and free translation API. Interface made using Tkinter. Code written fully in Python.
MIT License
436 stars 55 forks source link

[BUG] The software can not see the large dictionary #22

Closed k566o closed 1 year ago

k566o commented 1 year ago

Software can not see the large dictionary , so I delete it, software successfully downloads it, but then can not see it, will keep asking to download large dictionary screencap https://www.youtube.com/watch?v=3zzrkz5oeUU

Downloading of other dictionaries works fine

Dadangdut33 commented 1 year ago

hmm interesting, i will check this out

Dadangdut33 commented 1 year ago

Hmm it seems that the cause is because of the model name being different. I hard coded it as large but there seems to be an update from whisper that i missed because there are 2 version of the large model now (v1 and v2 with version name on their model).

In the meanwhile you can rename the downloaded large-v2.pt as large.pt. This will fix the model not found problem

I will provide a fix asap, Thanks for letting me know