dkpro / dkpro-core

Collection of software components for natural language processing (NLP) based on the Apache UIMA framework.
https://dkpro.github.io/dkpro-core
Other
196 stars 67 forks source link

New format of LXF Support #1027

Closed kouylekov-usit closed 7 years ago

kouylekov-usit commented 7 years ago

The LXF have underwent an update of the format. It is more or less the following:

The annotations class is moved from annotations to its own parameter:

{
    "type" : "node",
    "origin" : "dkpro",
    "id" : "dkpro-n8@1",
    "index" : 7,
    "rank" : 0,
    "annotations" : {
      dkpro: {
           "pos" : "DT",
           "class": "morphology"
      }
 }

becomes:

{
    "type" : "node",
    "origin" : "dkpro",
    "id" : "dkpro-n8@1",
    "index" : 7,
    "rank" : 0,
    "annotation_class" : "morphology",
    "annotations" : {
      "pos" : "DT"
    }
reckart commented 7 years ago

Anything else to do here or is this issue resolved?

kouylekov-usit commented 7 years ago

Yes. We are in a progress of updating again in a major overhaul. So for now you can leave it open.

Cheers Milen

On 03/29/2017 08:35 PM, Richard Eckart de Castilho wrote:

Anything else to do here or is this issue resolved?

— You are receiving this because you were assigned. Reply to this email directly, view it on GitHub https://github.com/dkpro/dkpro-core/issues/1027#issuecomment-290184117, or mute the thread https://github.com/notifications/unsubscribe-auth/AQGHYIbibD3g3yae0SLgI-PvZE5mxId8ks5rqqRngaJpZM4L6x0E.

reckart commented 7 years ago

@kouylekov-usit Since there have been no further changes here for a while, I am closing it. If you do any further changes before 1.9.0 is release, please re-open. Otherwise, please open separate issues for improvements in 1.10.0.