Skip to content

Latest commit

 

History

History
71 lines (66 loc) · 2.17 KB

spacy_codes.md

File metadata and controls

71 lines (66 loc) · 2.17 KB

Part-of-Speech (POS) tagging

  • ADJ: adjective, e.g. big, old, green, incomprehensible, first
  • ADP: adposition (preposition/postposition) e.g. in, to, during
  • ADV: adverb, e.g. very, tomorrow, down, where, there
  • AUX: auxiliary, e.g. is, has (done), will (do), should (do)
  • CONJ: conjunction, e.g. and, or, but
  • CCONJ: coordinating conjunction, e.g. and, or, but
  • DET: determiner, e.g. a, an, the
  • INTJ: interjection, e.g. psst, ouch, bravo, hello
  • NOUN: noun, e.g. girl, cat, tree, air, beauty
  • NUM: numeral, e.g. 1, 2017, one, seventy-seven, IV, MMXIV
  • PART: particle, e.g. ‘s, not
  • PRON: pronoun, e.g I, you, he, she, myself, themselves, somebody
  • PROPN: proper noun, e.g. Mary, John, London, NATO, HBO
  • PUNCT: punctuation, e.g. ., (, ), ?
  • SCONJ: subordinating conjunction, e.g. if, while, that
  • SYM: symbol, e.g. $, %, §, ©, +, −, ×, ÷, =, :), emojis
  • VERB: verb, e.g. run, runs, running, eat, ate, eating
  • X: other, e.g. sfpksdpsxmsa
  • SPACE: space, e.g.

Dependency (DEP) parsing.

  • ACL: clausal modifier of noun
  • ACOMP: adjectival complement
  • ADVCL: adverbial clause modifier
  • ADVMOD: adverbial modifier
  • AGENT: agent
  • AMOD: adjectival modifier
  • APPOS: appositional modifier
  • ATTR: attribute
  • AUX: auxiliary
  • AUXPASS: auxiliary (passive)
  • CASE: case marker
  • CC: coordinating conjunction
  • CCOMP: clausal complement
  • COMPOUND: compound modifier
  • CONJ: conjunct
  • CSUBJ: clausal subject
  • CSUBJPASS: clausal subject (passive)
  • DATIVE: dative
  • DEP: unclassified dependent
  • DET: determiner
  • DOBJ: direct object
  • EXPL: expletive
  • INTJ: interjection
  • MARK: marker
  • META: meta modifier
  • NEG: negation modifier
  • NOUNMOD: modifier of nominal
  • NPMOD: noun phrase as adverbial modifier
  • NSUBJ: nominal subject
  • NSUBJPASS: nominal subject (passive)
  • NUMMOD: number modifier
  • OPRD: object predicate
  • PARATAXIS: parataxis
  • PCOMP: complement of preposition
  • POBJ: object of preposition
  • POSS: possession modifier
  • PRECONJ: pre-correlative conjunction
  • PREDET: pre-determiner
  • PREP: prepositional modifier
  • PRT: particle
  • PUNCT: punctuation
  • QUANTMOD: modifier of quantifier
  • RELCL: relative clause modifier
  • ROOT: root
  • XCOMP: open clausal complement