tagging | index /home/linkliman/Documents/Python/Python3.6/Projects/TAL-Project/tal/src/tagging.py |
This file contains funtions to tag a sentence with the TreeTagger
and to convert a tagged sentence to a format for our application.
Modules | ||||||
|
Functions | ||
|
Data | ||
DET_POS = ['DET:POS'] END_SENT = ['END'] ENTITY_NAME = ['NAM'] PRONOM_PERS = ['PRO:PER'] PRONOM_POSSESSIF = ['PRO:POS'] THIS_DIR = '/home/linkliman/Documents/Python/Python3.6/Projects/TAL-Project/tal/src' UNTREATED_TAGS = ['ABR', 'ADJ', 'ADV', 'DET:ART', 'INT', 'KON', 'PUN', 'NOM', 'NUM', 'PRO', 'PRO:DEM', 'PRO:IND', 'PRO:REL', 'PRP', 'PRP:det', 'PUN', 'PUN:cit', 'SENT', 'SYM', 'VER:infi', ...] VERB = ['VER:cond', 'VER:futu', 'VER:impe', 'VER:impf', 'VER:pres', 'VER:simp', 'VER:subi', 'VER:subp'] |