@@ -10,14 +10,14 @@ FRENCH_TEST = format=TREES,/u/nlp/data/lexparser/trees/French/FTB-Test.utf8.txt
10
10
11
11
GERMAN_TEST = format=TREES,trf=edu.stanford.nlp.trees.international.negra.NegraPennTreeReaderFactory,/u/nlp/data/GermanACL08/negra/negra_3.mrg
12
12
13
- SPANISH_TEST = format=TREES,/u/nlp/data/spanish/ancora/ancora.test
13
+ SPANISH_TEST = format=TREES,/u/nlp/data/spanish/ancora/ancora.test,/u/nlp/data/spanish/ldc/ldc-NW.test,/u/nlp/data/spanish/ldc/ldc-DF.test
14
14
15
15
.SECONDEXPANSION :
16
16
17
17
all : arabic chinese english french german spanish testing wsj
18
18
.PHONY : all arabic chinese english french german spanish testing wsj
19
19
20
- arabic : arabic.tagger arabic-train.tagger
20
+ arabic : arabic.tagger arabic-train.tagger
21
21
22
22
# we release an arabic model trained on everything, with a
23
23
# corresponding model on train only for testing purposes
@@ -27,35 +27,35 @@ arabic.tagger arabic-train.tagger: $$@.props
27
27
java -mx6g edu.stanford.nlp.tagger.maxent.MaxentTagger -props $@ .props > $@ .out 2>&1
28
28
java -mx6g edu.stanford.nlp.tagger.maxent.MaxentTagger -model $@ -testFile $(ARABIC_TEST ) -verboseResults false >> $@ .out 2>&1
29
29
30
- chinese : chinese-distsim.tagger chinese-nodistsim.tagger
30
+ chinese : chinese-distsim.tagger chinese-nodistsim.tagger
31
31
32
32
chinese-nodistsim.tagger chinese-distsim.tagger : $$@ .props
33
33
@echo Training $@
34
- @echo Will test on $(CHINESE_TEST )
34
+ @echo Will test on $(CHINESE_TEST )
35
35
java -mx6g edu.stanford.nlp.tagger.maxent.MaxentTagger -props $@ .props > $@ .out 2>&1
36
36
java -mx6g edu.stanford.nlp.tagger.maxent.MaxentTagger -model $@ -testFile $(CHINESE_TEST ) -verboseResults false >> $@ .out 2>&1
37
37
38
38
english : english-bidirectional-distsim.tagger english-caseless-left3words-distsim.tagger english-left3words-distsim.tagger
39
39
40
40
english-bidirectional-distsim.tagger english-caseless-left3words-distsim.tagger english-left3words-distsim.tagger : $$@ .props
41
41
@echo Training $@
42
- @echo Will test on $(ENGLISH_TEST )
42
+ @echo Will test on $(ENGLISH_TEST )
43
43
java -mx6g edu.stanford.nlp.tagger.maxent.MaxentTagger -props $@ .props > $@ .out 2>&1
44
44
java -mx6g edu.stanford.nlp.tagger.maxent.MaxentTagger -model $@ -testFile $(ENGLISH_TEST ) -verboseResults false >> $@ .out 2>&1
45
45
46
46
french : french.tagger
47
47
48
48
french.tagger : $$@ .props
49
49
@echo Training $@
50
- @echo Will test on $(FRENCH_TEST )
50
+ @echo Will test on $(FRENCH_TEST )
51
51
java -mx6g edu.stanford.nlp.tagger.maxent.MaxentTagger -props $@ .props > $@ .out 2>&1
52
52
java -mx6g edu.stanford.nlp.tagger.maxent.MaxentTagger -model $@ -testFile $(FRENCH_TEST ) -verboseResults false >> $@ .out 2>&1
53
53
54
54
german : german-dewac.tagger german-fast.tagger german-fast-caseless.tagger german-hgc.tagger
55
55
56
56
german-dewac.tagger german-fast.tagger german-fast-caseless.tagger german-hgc.tagger : $$@ .props
57
57
@echo Training $@
58
- @echo Will test on $(GERMAN_TEST )
58
+ @echo Will test on $(GERMAN_TEST )
59
59
java -mx6g edu.stanford.nlp.tagger.maxent.MaxentTagger -props $@ .props > $@ .out 2>&1
60
60
java -mx6g edu.stanford.nlp.tagger.maxent.MaxentTagger -model $@ -testFile $(GERMAN_TEST ) -verboseResults false >> $@ .out 2>&1
61
61
@@ -64,16 +64,16 @@ spanish: spanish.tagger spanish-distsim.tagger
64
64
spanish.tagger spanish-distsim.tagger : $$@ .props
65
65
@echo Training $@
66
66
@echo Will test on $(SPANISH_TEST )
67
- # java -mx6g edu.stanford.nlp.tagger.maxent.MaxentTagger -props $@.props > $@.out 2>&1
68
- java -mx6g edu.stanford.nlp.tagger.maxent.MaxentTagger -model $@ -testFile $(SPANISH_TEST) -verboseResults false >> $@.out 2>&1
67
+ java -mx6g edu.stanford.nlp.tagger.maxent.MaxentTagger -props $@ .props > $@ .out 2>&1
68
+ # java -mx6g edu.stanford.nlp.tagger.maxent.MaxentTagger -model $@ -testFile $(SPANISH_TEST) -verboseResults false >> $@.out 2>&1
69
69
70
70
testing : testing.tagger
71
71
72
72
testing.tagger :
73
73
@echo Training $@
74
74
java -mx6g edu.stanford.nlp.tagger.maxent.MaxentTagger -props $@ .props > $@ .out 2>&1
75
75
76
- wsj : wsj-0-18-bidirectional-distsim.tagger wsj-0-18-bidirectional-nodistsim.tagger wsj-0-18-caseless-left3words-distsim.tagger wsj-0-18-left3words-distsim.tagger wsj-0-18-left3words-nodistsim.tagger
76
+ wsj : wsj-0-18-bidirectional-distsim.tagger wsj-0-18-bidirectional-nodistsim.tagger wsj-0-18-caseless-left3words-distsim.tagger wsj-0-18-left3words-distsim.tagger wsj-0-18-left3words-nodistsim.tagger
77
77
78
78
wsj-0-18-bidirectional-distsim.tagger wsj-0-18-bidirectional-nodistsim.tagger wsj-0-18-caseless-left3words-distsim.tagger wsj-0-18-left3words-distsim.tagger wsj-0-18-left3words-nodistsim.tagger : $$@ .props
79
79
@echo Training $@
0 commit comments