diff --git a/README.md b/README.md
index f503b14..c0d02c5 100644
--- a/README.md
+++ b/README.md
@@ -6,93 +6,18 @@ The tools require Java.
See `./dockerfiles/mate-tool-env/README.md` for environment preparation.
## mate-tools
-Using **Full srl pipeline (including anna-3.3)** from the Downloads section.
-Benchmarking the tool for slo and hr: [2] (submodule of this repo).
+Check out `./tools/srl-20131216/README.md`.
-Mate-tool for srl tagging can be found in `./tools/srl-20131216/`.
+## 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'
-### train
-Create the `model-file`:
+## Tools
+* Parser for reading both `SSJ500k 2.1 TEI xml` and `Kres F....xml.parsed.xml"` files found in `./tools/parser/parser.py`.
-`--help` output:
-```bash
-java -cp srl.jar se.lth.cs.srl.Learn --help
-Not enough arguments, aborting.
-Usage:
- java -cp se.lth.cs.srl.Learn [options]
-
-Example:
- java -cp srl.jar:lib/liblinear-1.51-with-deps.jar se.lth.cs.srl.Learn eng ~/corpora/eng/CoNLL2009-ST-English-train.txt eng-srl.mdl -reranker -fdir ~/features/eng -llbinary ~/liblinear-1.6/train
-
- trains a complete pipeline and reranker based on the corpus and saves it to eng-srl.mdl
-
- corresponds to the language and is one of
- chi, eng, ger
-
-Options:
- -aibeam the size of the ai-beam for the reranker
- -acbeam the size of the ac-beam for the reranker
- -help prints this message
-
-Learning-specific options:
- -fdir the directory with feature files (see below)
- -reranker trains a reranker also (not done by default)
- -llbinary a reference to a precompiled version of liblinear,
- makes training much faster than the java version.
- -partitions number of partitions used for the reranker
- -dontInsertGold don't insert the gold standard proposition during
- training of the reranker.
- -skipUnknownPredicates skips predicates not matching any POS-tags from
- the feature files.
- -dontDeleteTrainData doesn't delete the temporary files from training
- on exit. (For debug purposes)
- -ndPipeline Causes the training data and feature mappings to be
- derived in a non-deterministic way. I.e. training the pipeline
- on the same corpus twice does not yield the exact same models.
- This is however slightly faster.
-
-The feature file dir needs to contain four files with feature sets. See
-the website for further documentation. The files are called
-pi.feats, pd.feats, ai.feats, and ac.feats
-All need to be in the feature file dir, otherwise you will get an error.
-```
-Input: `lang`, `input-corpus`.
-
-### parse
-`--help` output:
-```bash
-$ java -cp srl.jar se.lth.cs.srl.Parse --help
-Not enough arguments, aborting.
-Usage:
- java -cp se.lth.cs.srl.Parse [options]