dehyphen icon indicating copy to clipboard operation
dehyphen copied to clipboard

📜 Dehyphenation of broken text (mainly German), i.e., extracted from a PDF

Results 6 dehyphen issues
Sort by recently updated
recently updated
newest added

I used a text which has a \n on every single line but not paragraphs because that's how I got the text. When using the scorer function, I get a...

In the provided examples a method 'text_to_format' is mentioned that was not imported. NameError: name 'text_to_format' is not defined

Hi when trying to `from dehyphen import FlairScorer` I get following error: ``` --------------------------------------------------------------------------- ImportError Traceback (most recent call last) in 3 import os 4 import sqlite3 ----> 5 from...

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. Fix https://github.com/pd3f/dehyphen/issues/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 to ` scorer = FlairScorer(lang="de", fast=True)`...

Hello. Thanks for the great project. I have a handful of broken words with hyphen removed, and I want to predict if the hyphen in between should be recovered. I'm...