Go to file
2019-02-24 22:23:32 +01:00
bilateral-srl@86642e1866 added some data and updated README.md 2019-01-29 07:55:13 +01:00
data srl taggin pipeline (output in .tsv) 2019-02-24 22:23:32 +01:00
dockerfiles model for fillpred 2019-02-24 16:13:46 +01:00
tools srl taggin pipeline (output in .tsv) 2019-02-24 22:23:32 +01:00
.gitignore model for fillpred 2019-02-24 16:13:46 +01:00
.gitmodules added some data and updated README.md 2019-01-29 07:55:13 +01:00
data_format.xml msdmap.py 2019-02-10 23:23:24 +01:00
Makefile srl taggin pipeline (output in .tsv) 2019-02-24 22:23:32 +01:00
README.md srl taggin pipeline (output in .tsv) 2019-02-24 22:23:32 +01:00

cjvt-srl-tagging

We'll be using mate-tools to perform SRL on Kres.

workspace

The tools require Java. Go to ./dockerfiles/python-java/ and run make.
You should get a docker environment, mounting this repo.

mate-tools

Check out ./tools/srl-20131216/README.md.

Scripts

Check all possible xml tags (that occur after the tag.
'cat F0006347.xml.parsed.xml | grep -A 999999999999 -e '' | grep -o -e '<[^" "]*' | sort | uniq'

Tools

  • Parser for reading both SSJ500k 2.1 TEI xml and Kres F....xml.parsed.xml" files found in ./tools/parser/parser.py.
  • fillpred_model for creating a yes/no model for preditcing the predicate (based on ssj500k data).

Usage

$ cd ./dockerfiles/python-java`
$ make
# you should be inside a container now
$ cd ./cjvt-srl-tagging
$ make

Makefile

The Makefile follows certain steps:

  1. Create a fillpred model.
  2. Parse .xml files and create .tsv files.
  3. Run mate-tools srl-tagger on the created .tsv files.

Sources