connl2009 output for kres

This commit is contained in:
voje
2019-02-13 08:49:37 +01:00
parent 825f67a054
commit b3a39d74ef
8 changed files with 2219 additions and 11 deletions

View File

@@ -0,0 +1,12 @@
FROM ubuntu:16.04
RUN apt-get update
RUN apt-get install -y \
vim \
default-jdk \
python3 \
python3-pip
RUN pip3 install lxml
ENV PYTHONIOENCODING UTF-8

View File

@@ -0,0 +1,12 @@
You might want to mount this whole repo into the docker container.
Also mount data locations.
Example container:
```bash
$ docker build . -t my_python
$ docker run \
-it \
-v $(echo $(cd ../..; pwd)):/cjvt-srl-tagging \
python_java \
/bin/bash
```