You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The tests use scorer = FlairScorer(lang="multi-v0", fast=True), but then this project tries to download the language model from a stale url at hu-berlin. Switching to scorer = FlairScorer(lang="de", fast=True) leads to the same problem.
As workaround, you could use the standard German language model by using scorer = FlairScorer(lang="de"), as production does.
The text was updated successfully, but these errors were encountered:
DavidFarago
pushed a commit
to DavidFarago/dehyphen
that referenced
this issue
Mar 8, 2022
Since the `multi-v0` models are no longer available at [hu-berlin],
switch to the `de` model that is also used in production.
With this change, the tests pass again.
Fixpd3f#4
The tests use
scorer = FlairScorer(lang="multi-v0", fast=True)
, but then this project tries to download the language model from a stale url at hu-berlin. Switching toscorer = FlairScorer(lang="de", fast=True)
leads to the same problem.As workaround, you could use the standard German language model by using
scorer = FlairScorer(lang="de")
, as production does.The text was updated successfully, but these errors were encountered: