#1315·CoreNLP

parsing '`'

Author: AntonOfTheWoodsCreated Nov 4, 2022Updated Mar 25, 2025
bash
curl 'http://localhost:9000/?properties={%22annotators%22%3A%22lemma%22%2C%22outputFormat%22%3A%22json%22}' -d '`'

Gives me:

{
  "sentences": [
    {
      "index": 0,
      "tokens": [
        {
          "index": 1,
          "word": "`",
          "originalText": "`",
          "lemma": "`",
          "characterOffsetBegin": 0,
          "characterOffsetEnd": 1,
          "pos": "``",
          "before": "",
          "after": ""
        }
      ]
    }
  ]
}

With the standard English model. Is this expected? I'm particularly surprised at the POS.