parserservices.appspot.com Open in urlscan Pro
2607:f8b0:400d:c03::99  Public Scan

Submitted URL: http://parserservices.appspot.com/
Effective URL: https://parserservices.appspot.com/
Submission: On November 02 via api from US — Scanned from CA

Form analysis 4 forms found in the DOM

GET parse

<form action="parse" method="GET">
  <div class="field">
    <label>Sentence</label><input type="text" name="sent" value="Bell, a company which is based in LA, makes and distributes computer products." size="60">
  </div>
  <div class="field">
    <label>Output style</label><input type="text" name="print" value="penn" size="60">
  </div>
  <div class="field">
    <label>&nbsp;</label><small>use one or more from <em>oneline, penn, latexTree, words, wordsAndTags, rootSymbolOnly, typedDependencies, typedDependenciesCollapsed, semanticGraph,
        <a href="https://mailman.stanford.edu/pipermail/parser-user/2011-January/000836.html">makeCopulaHead</a></em></small>
  </div>
  <div class="field">
    <label>&nbsp;</label><input type="Submit">
  </div>
</form>

POST nlp

<form action="nlp" method="POST">
  <div class="field">
    <label>Sentence</label><input type="text" name="sent" value="Bell, a company which is based in LA, makes and distributes computer products." size="60">
  </div>
  <div class="field">
    <label>Annotators</label><input type="text" name="annotators" value="tokenize, ssplit, parse" size="60">
  </div>
  <div class="field">
    <label>&nbsp;</label><small>use one or more from <em>tokenize, ssplit, pos, lemma, ner, parse, dcoref</em>; note that <em>pos, lemma, ner, dcoref</em> will not work on a free instance of Google App Engine because of memory limitations</small>
  </div>
  <div class="field">
    <label>Output style</label><select name="print">
      <option value="prettyPrint">prettyPrint</option>
      <option value="xml" selected="selected">xml</option>
      <option value="toShorterString">toShorterString</option>
      <option value="pennPrint">pennPrint</option>
    </select>
  </div>
  <div class="field">
    <label>&nbsp;</label><input type="Submit">
  </div>
</form>

POST opennlp

<form action="opennlp" method="POST">
  <div class="field">
    <label>Sentence</label><input type="text" name="sent" value="Bell, a company which is based in LA, makes and distributes computer products." size="60">
  </div>
  <div class="field">
    <label>&nbsp;</label><small> will not work on a free instance of Google App Engine because <a href="http://opennlp.sourceforge.net/models-1.5/">model</a> is +32Mb</small>
  </div>
  <div class="field">
    <label>&nbsp;</label><input type="Submit">
  </div>
</form>

POST berkeley

<form action="berkeley" method="POST">
  <div class="field">
    <label>Sentence</label><input type="text" name="sent" value="Bell, a company which is based in LA, makes and distributes computer products." size="60">
  </div>
  <div class="field">
    <label>&nbsp;</label><small>will not work on a free instance of Google App Engine because of memory limitations</small>
  </div>
  <div class="field">
    <label>&nbsp;</label><input type="Submit">
  </div>
</form>

Text Content

PARSER SERVICES

I intend to port some parsers and NLP tools to GAE so they can be used from
environments where Java might not be available.


STANFORD PARSER

A simple webservice interfacing the Stanford Parser.

Sentence
Output style
 use one or more from oneline, penn, latexTree, words, wordsAndTags,
rootSymbolOnly, typedDependencies, typedDependenciesCollapsed, semanticGraph,
makeCopulaHead
 


STANFORD CORE NLP

Sentence
Annotators
 use one or more from tokenize, ssplit, pos, lemma, ner, parse, dcoref; note
that pos, lemma, ner, dcoref will not work on a free instance of Google App
Engine because of memory limitations
Output style prettyPrint xml toShorterString pennPrint
 


APACHE OPENNLP

Sentence
  will not work on a free instance of Google App Engine because model is +32Mb
 


BERKELEY PARSER

Sentence
 will not work on a free instance of Google App Engine because of memory
limitations
 

More info at: http://josep.valls.name and http://voz-nlp.appspot.com/ (takes a
while to spin a new instance after it's been put to sleep).