margaretha | 51e5e3f | 2018-10-17 15:10:03 +0200 | [diff] [blame^] | 1 | define(["hint/foundries","hint/foundries/stts"], function (ah, sttsArray) { |
| 2 | ah["-"].push( |
| 3 | ["OpenNLP", "opennlp/", "Part-of-Speech"] |
| 4 | ); |
| 5 | |
| 6 | ah["opennlp/"] = [ |
| 7 | ["Part-of-Speech", "p="] |
| 8 | ]; |
| 9 | |
| 10 | // ah["opennlp/p="] = sttsArray; |
| 11 | ah["opennlp/p="] = [ |
| 12 | ["ADJA","ADJA ", "Attributive Adjective"], |
| 13 | ["ADJD","ADJD ", "Predicative Adjective"], |
| 14 | ["ADV","ADV ", "Adverb"], |
| 15 | ["APPO","APPO ", "Postposition"], |
| 16 | ["APPR","APPR ", "Preposition"], |
| 17 | ["APPRART","APPRART ", "Preposition with Determiner"], |
| 18 | ["APZR","APZR ","Right Circumposition"], |
| 19 | ["ART","ART ", "Determiner"], |
| 20 | ["CARD","CARD ", "Cardinal Number"], |
| 21 | ["FM","FM ", "Foreign Material"], |
| 22 | ["ITJ","ITJ ", "Interjection"], |
| 23 | ["KOKOM","KOKOM ", "Comparison Particle"], |
| 24 | ["KON","KON ", "Coordinating Conjuncion"], |
| 25 | ["KOUI","KOUI ", "Subordinating Conjunction with 'zu'"], |
| 26 | ["KOUS","KOUS ", "Subordinating Conjunction with Sentence"], |
| 27 | ["NE","NE ", "Named Entity"], |
| 28 | ["NN","NN ", "Normal Nomina"], |
| 29 | ["PAV", "PAV ", "Pronominal Adverb"], |
| 30 | ["PDAT","PDAT ","Attributive Demonstrative Pronoun"], |
| 31 | ["PDS","PDS ", "Substitutive Demonstrative Pronoun"], |
| 32 | ["PIAT","PIAT ", "Attributive Indefinite Pronoun without Determiner"], |
| 33 | ["PIDAT","PIDAT ", "Attributive Indefinite Pronoun with Determiner"], |
| 34 | ["PIS","PIS ", "Substitutive Indefinite Pronoun"], |
| 35 | ["PPER","PPER ", "Personal Pronoun"], |
| 36 | ["PPOSAT","PPOSAT ", "Attributive Possessive Pronoun"], |
| 37 | ["PPOSS","PPOSS ", "Substitutive Possessive Pronoun"], |
| 38 | ["PRELAT","PRELAT ", "Attributive Relative Pronoun"], |
| 39 | ["PRELS","PRELS ", "Substitutive Relative Pronoun"], |
| 40 | ["PRF","PRF ", "Reflexive Pronoun"], |
| 41 | ["PROAV","PROAV ", "Pronominal Adverb"], |
| 42 | ["PTKA","PTKA ","Particle with Adjective"], |
| 43 | ["PTKANT","PTKANT ", "Answering Particle"], |
| 44 | ["PTKNEG","PTKNEG ", "Negation Particle"], |
| 45 | ["PTKVZ","PTKVZ ", "Separated Verbal Particle"], |
| 46 | ["PTKZU","PTKZU ", "'zu' Particle"], |
| 47 | ["PWAT","PWAT ", "Attributive Interrogative Pronoun"], |
| 48 | ["PWAV","PWAV ", "Adverbial Interrogative Pronoun"], |
| 49 | ["PWS","PWS ", "Substitutive Interrogative Pronoun"], |
| 50 | ["TRUNC","TRUNC ","Truncated"], |
| 51 | ["VAFIN","VAFIN ", "Auxiliary Finite Verb"], |
| 52 | ["VAIMP","VAIMP ", "Auxiliary Finite Imperative Verb"], |
| 53 | ["VAINF","VAINF ", "Auxiliary Infinite Verb"], |
| 54 | ["VAPP","VAPP ", "Auxiliary Perfect Participle"], |
| 55 | ["VMFIN","VMFIN ", "Modal Finite Verb"], |
| 56 | ["VMINF","VMINF ", "Modal Infinite Verb"], |
| 57 | ["VMPP","VMPP ", "Modal Perfect Participle"], |
| 58 | ["VVFIN","VVFIN ","Finite Verb"], |
| 59 | ["VVIMP","VVIMP ", "Finite Imperative Verb"], |
| 60 | ["VVINF","VVINF ", "Infinite Verb"], |
| 61 | ["VVIZU","VVIZU ", "Infinite Verb with 'zu'"], |
| 62 | ["VVPP","VVPP ", "Perfect Participle"], |
| 63 | ["XY", "XY ", "Non-Word"] |
| 64 | ]; |
| 65 | }); |