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
"""a module to split up German compound words based on a user-defined external German dictionary and a an implementation of the Aho-Corasick algorithm for multi-pattern string search and retrieval. Attribution: german_compound_splitter, Copyright 2020 by repodiac, see https://github.com/repodiac for updates and further information.
"""
from german_compound_splitter import comp_split
def compound_base(noun: str, ahocs) -> list:
"""returns the base noun of the parsed compound"""