-
Notifications
You must be signed in to change notification settings - Fork 3
/
adorneaf.bat
28 lines (24 loc) · 882 Bytes
/
adorneaf.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
@echo off
set saveclasspath=%classpath%
set classpath=.;
set classpath=%classpath%;bin
set classpath=%classpath%;lib\log4j-1.2.9.jar
set classpath=%classpath%;lib\jdom.jar
set classpath=%classpath%;lib\icu4j-charsets_3_6_1.jar
set classpath=%classpath%;lib\icu4j_3_6_1.jar
set classpath=%classpath%;lib\isorelax.jar
set classpath=%classpath%;lib\isorelax-jaxp-bridge-1.0.jar
set classpath=%classpath%;lib\msv.jar
set classpath=%classpath%;lib\relaxngDatatype.jar
set classpath=%classpath%;lib\xsdlib.jar
java -Xmx720m -Xss1m edu.northwestern.at.morphadorner.MorphAdorner ^
-p eaf.properties ^
-l data/ncflexicon.lex ^
-t data/ncftransmat.mat ^
-u data/ncfsuffixlexicon.lex ^
-a data/ncfmergedspellingpairs.tab ^
-s data/standardspellings.txt ^
-w data/spellingsbywordclass.txt ^
-o %1 ^
%2 %3 %4 %5 %6 %7 %8 %9
set classpath=%saveclasspath%