Sha256: 8571d3233d884bab962dcb1dea81ef70607ac853b26bccc897795dd6a788fdef

Contents?: true

Size: 1.65 KB

Versions: 6

Compression:

Stored size: 1.65 KB

Contents

[![Build Status](https://drone.io/github.com/opener-project/constituent-parser-de/status.png)](https://drone.io/github.com/opener-project/constituent-parser-de/latest)

Constituent Parser German
=========================

Introduction
------------

This is a parser for German text using the Stanford parser
(<http://nlp.stanford.edu/software/lex-parser.shtml>). The input for this module
has to be a valid KAF file with at least the text layer. The output will be the
constituent trees in pennTreebank format for each of the sentences in the input
KAF.

The tokenization and sentence splitting is taken from the input KAF file, so if
your input file has a wrong tokenization/splitting, the output could contain
errors. The number of output constituent trees will be exactly the same as the
number of sentences in your input KAF

Requirements
-----------

* VUKafParserPy: parser in python for KAF files
  (<https://github.com/opener-project/VU-kaf-parser>)
* lxml: library for processing xml in python
* Stanford parser: http://nlp.stanford.edu/software/lex-parser.shtml

How to run the module with Python
---------------------------------

You can run this module from the command line using Python. The main script is
core/stanford_parser_de.py. This script reads the KAF from the standard input
and writes the output to the standard output, generating some log information
in the standard error output. To process one file just run:

    cat input.kaf | core/stanford_parser_de.py > input.tree

This will read the KAF file in "input.kaf" and will store the constituent trees
in "input.tree".

Contact
------

* Ruben Izquierdo
* Vrije University of Amsterdam
* ruben.izquierdobevia@vu.nl

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
opener-constituent-parser-de-1.2.0 README.md
opener-constituent-parser-de-1.1.2 README.md
opener-constituent-parser-de-1.1.1 README.md
opener-constituent-parser-de-1.1.0 README.md
opener-constituent-parser-de-1.0.2 README.md
opener-constituent-parser-de-1.0.1 README.md