bug fix: adding _ to adjective headwords

dev
voje 5 years ago
parent 1d361f00ae
commit 3923888172

@ -1,3 +1,6 @@
# Deprecated: headword creation moved to be part of corpusparser,
# index creation moved to app.py as a preprocessing (with exit) step
CORPORA = ["kres", "ssj"] CORPORA = ["kres", "ssj"]
if __name__ == "__main__": if __name__ == "__main__":

@ -1 +1 @@
Subproject commit af4f6045bb06d05f932a720f1802062bbdeebeb7 Subproject commit c6b8426fb30f11f64bccb7f8bf0f1dd367f1a6f2

@ -1,4 +1,5 @@
import logging import logging
from corpusparser import enriched_lemma
log = logging.getLogger(__name__) log = logging.getLogger(__name__)
@ -20,7 +21,7 @@ def frames_from_db_entry(dbent):
srldict[key] += [srl] srldict[key] += [srl]
for hwtid, srlarr in srldict.items(): for hwtid, srlarr in srldict.items():
frames += [Frame( frames += [Frame(
hw_lemma=token_dict[hwtid]["lemma"], hw_lemma=enriched_lemma(token_dict[hwtid]),
tids=[_full_tid(hwtid)], tids=[_full_tid(hwtid)],
slots=[ slots=[
Slot( Slot(

Loading…
Cancel
Save