German Complexity Analyzer
GermanComplexityAnalyzer
Bases: ComplexityAnalyzer, SyntaxAnalyzerMixin
A ComplexityAnalyzer that is specific to the German language.
Source code in src/limes/analyzers/de/complexity_analyzer.py
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 | |
get_global_complexity(sentence, heuristic)
Calculate the complexity of the entire sentence.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
sentence
|
DocumentProtocol
|
The sentence for which the complexity is to be calculated. Please note that this function is designed to perform only on single sentences but won't complain if you pass a DocumentProtocol instance that constitutes a complete text. In that case, the values returned may be nonsensical. |
required |
heuristic
|
ComplexityAlgorithm
|
Determines which heuristic to use to calculate the complexity. |
required |
Raises:
| Type | Description |
|---|---|
NoRootVerbError: If no root can be found in the given sentence.
|
|
Source code in src/limes/analyzers/de/complexity_analyzer.py
get_local_complexities(sentence)
Get a list of syntactically coherent phrases that constitute the given text, as well as their respective calculated syntactic complexities. You can sum the local complexities to get a sound heuristic for the complexity of the complete sentence.
Source code in src/limes/analyzers/de/complexity_analyzer.py
calculate_verb_phrase_complexity(phrase, verb_idx)
Calculate the complexity of a given verb phrase.
Source code in src/limes/analyzers/de/complexity_analyzer.py
calculate_noun_chunk_complexity(noun_chunk)
Calculate how difficult comprehension of the given noun chunk is.
Source code in src/limes/analyzers/de/complexity_analyzer.py
calculate_verb_position_complexity(phrase, verb_idx)
Calculate how difficult the verb position makes parsing the sentence. Verb position complexity determined by the number of noun chunks that precede the verb (where one noun chunk is acceptable).