This commit is contained in:
rafalj 2013-10-24 17:06:17 +02:00
parent b484958412
commit 12ac566533
3 changed files with 0 additions and 27 deletions

View File

@ -1,9 +0,0 @@
#----------------------------
# Concordia configuration file
#---------------------------
#
#Path to the Puddle tagset
puddle_tagset_path = "/home/rafalj/projects/concordia/tests/resources/puddle/basic-tagset.txt";
### eof

View File

@ -1,3 +0,0 @@
Rule "street"
Match: [orth~"[P]ort.*"]+;
Eval: group(ne_ADDRESS, 1);

View File

@ -1,15 +0,0 @@
Rule "test 17:00"
Match: [orth~"([012][0-9]|[1-9]):([0-6][0-9])"];
Eval: group(ne_TIME, 1);
Rule "test date"
Match: [orth~"(0?[1-9]|[012][0-9]|3[01])"] [orth~"jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec"/i] [orth~"[12][0-9][0-9][0-9]"];
Eval: group(ne_DATE, 1);
Rule "date: MONTH_NAME year"
Match: [type~"MONTH_NAME"] [orth~"(19[0-9][0-9]|2[01][0-9][0-9])"];
Eval: group(ne_DATE, 1);
Rule "street"
Match: [orth~"\d+"] [orth~","]? [orth~"[A-Z].*"]+ [orth~"(St|Rd|Street|Avenue|Lane)"];
Eval: group(ne_ADDRESS, 1);