GithubHelp home page GithubHelp logo

Comments (4)

jgontrum avatar jgontrum commented on September 27, 2024

I saw a twitter conversation today, where Matthew wrote that sentence boundary detection (that does not require dependency parsing) is on the roadmap for spaCy v2. (https://twitter.com/honnibal/status/860395803826937856).

But if you have a Python module that detects sentence boundaries on a raw text, It would be no problem to integrate this in the API as separate entry point.

from spacy-api-docker.

roschler avatar roschler commented on September 27, 2024

Hi Johannes,

Thanks for replying. I'm a bit confused. I thought the current version of spaCy already does sentence boundary detection?:

explosion/spaCy#23

"Improved sentence segmentation now included in the latest release. Docs are updated with usage."

I'd like to be able to submit an entire document to the server and have it return a JSON array of all segmented sentences.

from spacy-api-docker.

 avatar commented on September 27, 2024

Same for me. /dep will return a list of annotated tokens but it would be nice to have something like this:

{
  'sentence': [
    {'index': 0, 'dep': [...]},
    {'index': 1, 'dep': [...]},
  ]
}

Similar to the JSON result that's provided by the Stanford CoreNLP Server.

from spacy-api-docker.

jgontrum avatar jgontrum commented on September 27, 2024

I agree this is probably a better a format when working with the output.
However, I'm currently not using this API in any of my projects, so development has a rather low priority for me.

But if you want to change the format, have a look at this part:

def to_json(self):
words = [{'text': w.text, 'tag': w.tag_} for w in self.doc]
arcs = []
for word in self.doc:
if word.i < word.head.i:
arcs.append(
{
'start': word.i,
'end': word.head.i,
'label': word.dep_,
'text': str(word),
'dir': 'left'
})
elif word.i > word.head.i:
arcs.append(
{
'start': word.head.i,
'end': word.i,
'label': word.dep_,
'text': str(word),
'dir': 'right'
})
return {'words': words, 'arcs': arcs}

I'm always happy to receive pull requests if you make any changes :)

from spacy-api-docker.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.