A tagger is a function from a sentence to a list of Type
s. A Type
consists of a name and the token interval it came from in the source
sentence.
For example, you might have a tagger that identifies animals. Following is the
string serialized form of a tagger. To the left of :=
is the name of the
tagger - when the tagger finds a type it will have this name. To the
right of :=
is the tagger class. This is a Java/Scala class; if no package
is specified taggers
will look in org.allenai.taggers.tag
. Between the
braces {}
are the arguments to the tagger.
Animal := LemmatizedKeywordTagger {
cat
kitten
dog
puppy
}
If this tagger were to run over the following sentence, we would get some types.
Kittens are very cute , but they turn into cats .
Type(name=Animal, text="Kittens", interval=[0, 1))
Type(name=Animal, text="cats", interval=[10, 11))
The taggers
project is composed of three subprojects: core
, which contains
the algorithms, cli
which has a small cli application, and webapp
, which
contains the web demo. The project is built with sbt
. For example, to run
the web demo, you can execute the following command.
sbt compile 'project webapp' run
You can also run taggers as a cli.
sbt compile 'project cli' 'run examples/reverb.taggers'
If you want an example of how to use the taggers project as a dependency,
please look at taggers-webapp
.
Taggers can be organized into a cascade with multiple levels. A cascade is defined by a cascade file which contains a list of taggers files (separated by newline) followed by any number of extractor definitions (see the "Extractors" section).
For example, we might have hello.cascade
as follows:
first.taggers
second.taggers
We can use the multiple files to organize our tagger definitions. Cascades can also share tagger definition files between them.
This tagger compiles regular expressions over the tokens in a sentence into an
NFA (for more information, see the Open Regex
and Open Regex Scala libraries).
A token is describedas a logical formula between angled brackets <>
. There
are a number of fields that can be matched upon for each token.
- string
- lemma: the lemmatized form of the token string (see MorphaStemmer in nlpstack)
- pos: the part-of-speech tag
- chunk: the chunk tag
- type: any type that intersects this token
- typeStart: any type that starts at this token
- typeEnd: any type that ends at this token
- typeCont: any type that intersects at this token but does not start or end there
A field can be matched in one of three ways.
- With double quotes
"
. Strings are interpreted the same was as Java strings (backslash is the escape character). - With single quotes
'
. The text between two single quotes will be taken verbatim (there is no escape character). - With slashes
/
. The text between the slashes will be interpreted as a regular expression. Backslash is the escape character so\\
becomes a single backslash and\/
escapes the forward slash.
If a quotation prefixed by "i" then the match will be case-insensitive (i.e.
string = i"cat"
will match "cAt").
A pattern tagger makes types with the tagger name, but also LinkedType
s for
each matching group. A LinkedType
has an Optional Type
field that points to
its parent Type
and a name field with a special syntax. If the tagger is
named T
and a matching group is named G1
for example, the tagger will
create a LinkedType
with the name T.G1
. If there is an unnamed matching
group a LinkedType
will be created with the group number (i.e. T.1
).
There is a lot of redundancy in their expressiveness. For example, OpenRegex supports pattern matching on the fields .This is not necessary but is an optimization and a shorthand. For example, the following two' patterns match the same text.
<pos=/NNPS?/>
<pos="NNP"> | <pos="NNPS">
Here are some more equivalent examples:
<pos="JJ">* <pos=/NNP./>+
<pos="JJ">* <pos=/NNPS?/>+
<pos="JJ">* <pos="NNP" | pos="NNPS">+
<pos="JJ">* (?:<pos="NNP"> | <pos="NNPS">)+
Note that (3) and (4) are not preferred for efficiency reasons. Regex OR (in example (4)) should only be used on multi-token sequences.
The Regular Expressions support named groups (<name>: ... )
, unnamed
groups (?: ... )
, and capturing groups ( ... )
. The operators allowed are
+
, ?
, *
, and |
. The Logic Expressions (that describe each token) allow
grouping ( ... )
, not !
, or |
, and and &
. To learn more about
the regular expression language, see https://github.com/knowitall/openregex.
Named groups create output subtypes. For example, if we had the following
OpenRegex
applied to the example below.
DescribedNoun := OpenRegex {
(<Description>:<pos='JJ'>+) (<Noun>:<pos='NN'>+)
}
The huge fat cat lingered in the hallway.
We would get the following output types.
DescribedNoun(huge fat cat)
DescribedNoun.Description(huge fat)
DescribedNoun.Noun(cat)
The TypedOpenRegex
extends the OpenRegex
with added syntax to match
types. Since a type can span multiple tokens but the pattern language operates
on the token level, matching types can be tedious and error prone. For
example, if you want to match the type Animal
, you need the following
pattern.
(?:(?:<typeStart='Animal' & typeEnd='Animal'>) | (?: <typeStart='Animal' & !typeEnd='Animal'> <typeCont='Animal' & !typeEnd='Animal'>* <typeEnd='Animal'>))
Matching many types in this manner quickly makes unreadable patterns, so the
TypedOpenRegex
adds the syntax @Type
which, if the type is Animal
(@Animal
) it would expand into the above expression. With this syntax, it's
easy to match on types. For an implementation of ReVerb
, see
examples/reverb.taggers
.
You can define extractors which build a structured string from a matched type. Extractors look similar to a Scala anonymous function.
x: NestedExtraction => (${x.Arg1}, ${x.NestedRelation}, (${x.BaseArg1}, ${x.BaseRelation}, ${x.BaseArg2}))
The left part (split it by =>
) says we should apply this pattern to any
NestedExtraction
type. The right part tells us what string we should build
from that NestedExtraction
.
String substitutions are used to build an interesting string. If the bound
variable (look all the way to the left) is x
, A string substitution looks
like ${x.expr|expr|...}
where expr
is either just a subtype, or a subtype
with a matching expression. Expressions can be chained with |
in case one
might fail. The last part of a fallback chain may be a string.
${x.Arg1|x.Arg2|'fallback'}
If the last fallback option fails, an exception is thrown.
Sometimes you want to move to another type. In this case, the
x.subtype1:matching.subtype2
pattern is used. Here matching is the type that
overlaps x.subtype1
and subtype2
is a subtype of `matching. You may chain
matching expressions.