Skip to content

v1.8.0 — Grammar Analysis & Lemma Extraction

Latest

Choose a tag to compare

@xieguaiwu xieguaiwu released this 04 Jul 17:30

v1.8.0 — Grammar Analysis & Lemma Extraction

New: Grammar Analysis (--parse)

bl --llm --parse "Der Mann geht nach Hause."

Full grammatical analysis via LLM:

  • Token Table: POS tag, lemma, morphological features, dependency relation
  • Sentence Structure: phrase types (NP/VP/PP), clause structure
  • Key Observations: verb position (V2), case marking, agreement, fixed phrases
  • Translation: natural translation

Works for German, French, English — any language the LLM supports.

New: Lemma Extraction

LLM now identifies the dictionary/base form of inflected words:

  • ging → lemma gehen (Past tense of gehen)
  • besser → lemma gut (Comparative form of gut)
  • ran → lemma run (past tense of run)
  • children → lemma child (Plural of child)

Documentation

Open-source grammar parser reference table:
spaCy, Stanza, TreeTagger, Stanford CoreNLP — with integration examples.