-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added sound alike and repeat correction handler, results are good eno…
…ugh to move on now
- Loading branch information
Showing
13 changed files
with
846 additions
and
412 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,15 @@ | ||
from lyrics_transcriber.correction.handlers.base import GapCorrectionHandler | ||
from lyrics_transcriber.correction.handlers.word_count_match import WordCountMatchHandler | ||
from lyrics_transcriber.correction.handlers.levenshtein import LevenshteinSimilarityHandler | ||
from lyrics_transcriber.correction.handlers.multi_levenshtein import MultiWordLevenshteinHandler | ||
from lyrics_transcriber.correction.handlers.metaphone import MetaphoneHandler | ||
from lyrics_transcriber.correction.handlers.semantic import SemanticHandler | ||
from lyrics_transcriber.correction.handlers.combined import CombinedHandler | ||
from lyrics_transcriber.correction.handlers.levenshtein import LevenshteinHandler | ||
from lyrics_transcriber.correction.handlers.sound_alike import SoundAlikeHandler | ||
from lyrics_transcriber.correction.handlers.extra_words import ExtraWordsHandler | ||
from lyrics_transcriber.correction.handlers.human import HumanHandler | ||
|
||
__all__ = [ | ||
"GapCorrectionHandler", | ||
"WordCountMatchHandler", | ||
"LevenshteinSimilarityHandler", | ||
"MultiWordLevenshteinHandler", | ||
"MetaphoneHandler", | ||
"SemanticHandler", | ||
"CombinedHandler", | ||
"LevenshteinHandler", | ||
"SoundAlikeHandler", | ||
"ExtraWordsHandler", | ||
"HumanHandler", | ||
] |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.