-
Notifications
You must be signed in to change notification settings - Fork 13
User Guide
Seid Muhie Yimam edited this page Sep 9, 2015
·
39 revisions
How to run GermaNER:
-
From Commandline
- Download the jar file from here
- Download the configuration file from here
- To train a model, run it as follows
-
java -jar -t TESTFILE
OR -
java -jar -t TESTFILE -o OUTPUTFILE
OR -
java -jar -t TESTFILE -o OUTPUTFILE -c CONFIGFILE
OR -
java -jar -i TRAINFILE
OR -
java -jar -i TRAINFILE -t TESTFILE
OR java -jar -i TRAINFILE -t TESTFILE -o OUTPUTFILE -c CONFIGFILE
-
Where -t TESTFILE
is the document to be tagged,-i TRAINFILE
is the tarining data, as explainde [here] (https://github.com/tudarmstadt-lt/GermaNER/wiki/File-Format), -o OUTPUTFILE
is the tagged output file, and -c CONFIGFILE
is the configuration file as explained here and
* To tag your document, the document format should be as it is explained here, run it as follows
-
Inside an application
TODO
-
From source
- Get the source code from here
- Compile GermaNER using the following command