Skip to content
Snippets Groups Projects
Commit 09235658 authored by Your Name's avatar Your Name
Browse files

Fix bug in SpeechTagger

parent d61c4f7f
No related branches found
Tags v1.3
No related merge requests found
......@@ -262,12 +262,12 @@ def load_speech_taggers():
Returns:
dict of str:`SequenceTagger`: Dictionary mapping a speech type to the corresponding tagger.
The speech types are: "indirect", "free_indirect", "direct", "reported"
The speech types are: "indirect", "freeIndirect", "direct", "reported"
"""
speech_taggers = {}
speech_taggers["indirect"] = SequenceTagger.load('de-historic-indirect')
speech_taggers["free_indirect"] = SequenceTagger.load('de-historic-free-indirect')
speech_taggers["freeIndirect"] = SequenceTagger.load('de-historic-free-indirect')
speech_taggers["direct"] = SequenceTagger.load('de-historic-direct')
speech_taggers["reported"] = SequenceTagger.load('de-historic-reported')
return speech_taggers
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment