begin_offset is set to -1 Google NATURAL LANGUAGE API (entity_extraction)

231 Views Asked by At

Google Cloud CLOUD NATURAL LANGUAGE API (entity_extraction) returns -1 for begin_offset(both on nodejs and python). Am I missing any paramters

from google.cloud import language
from google.cloud.language import enums
from google.cloud.language import types

client = language.LanguageServiceClient()

text = u'Dr. James went to NYU yesterday'
document = types.Document(
    content=text,
    type=enums.Document.Type.PLAIN_TEXT)

results = client.analyze_entities(document=document).entities
print(results[0].mentions[0].text.begin_offset)
1

There are 1 best solutions below

0
On BEST ANSWER