forked from japerk/nltk-trainer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
train_chunker.py
executable file
·211 lines (169 loc) · 7.04 KB
/
train_chunker.py
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
#!/usr/bin/python
import argparse, math, itertools, os.path
import nltk.tag, nltk.chunk, nltk.chunk.util
import nltk_trainer.classification.args
from nltk.corpus.reader import IEERCorpusReader
from nltk_trainer import dump_object, load_corpus_reader
from nltk_trainer.chunking import chunkers, transforms
########################################
## command options & argument parsing ##
########################################
parser = argparse.ArgumentParser(description='Train a NLTK Classifier',
formatter_class=argparse.RawTextHelpFormatter)
parser.add_argument('corpus',
help='''The name of a chunked corpus included with NLTK, such as treebank_chunk or
conll2000, or the root path to a corpus directory, which can be either an
absolute path or relative to a nltk_data directory.''')
parser.add_argument('--filename',
help='''filename/path for where to store the pickled tagger.
The default is {corpus}_{algorithm}.pickle in ~/nltk_data/chunkers''')
parser.add_argument('--no-pickle', action='store_true', default=False,
help="Don't pickle and save the tagger")
parser.add_argument('--trace', default=1, type=int,
help='How much trace output you want, defaults to %(default)d. 0 is no trace output.')
corpus_group = parser.add_argument_group('Corpus Reader Options')
corpus_group.add_argument('--reader', default=None,
help='''Full module path to a corpus reader class, such as
nltk.corpus.reader.chunked.ChunkedCorpusReader''')
corpus_group.add_argument('--fileids', default=None,
help='Specify fileids to load from corpus')
corpus_group.add_argument('--fraction', default=1.0, type=float,
help='Fraction of corpus to use for training, defaults to %(default)f')
corpus_group.add_argument('--flatten-deep-tree', action='store_true', default=False,
help='''Flatten deep trees from parsed_sents() instead of chunked_sents().
Cannot be combined with --shallow-tree.''')
corpus_group.add_argument('--shallow-tree', action='store_true', default=False,
help='''Use shallow trees from parsed_sents() instead of chunked_sents().
Cannot be combined with --flatten-deep-tree.''')
corpus_group.add_argument('--simplify_tags', action='store_true', default=False,
help='Use simplified tags')
chunker_group = parser.add_argument_group('Chunker Options')
chunker_group.add_argument('--sequential', default='ub',
help='''Sequential Backoff Algorithm for a Tagger based Chunker.
This can be any combination of the following letters:
u: UnigramTagger
b: BigramTagger
t: TrigramTagger
The default is "%(default)s". If you specify a classifier, this option will be ignored.''')
chunker_group.add_argument('--classifier', nargs='*',
choices=nltk_trainer.classification.args.classifier_choices,
help='''ClassifierChunker algorithm to use instead of a sequential Tagger based Chunker.
Maxent uses the default Maxent training algorithm, either CG or iis.''')
nltk_trainer.classification.args.add_maxent_args(parser)
nltk_trainer.classification.args.add_decision_tree_args(parser)
eval_group = parser.add_argument_group('Chunker Evaluation',
'Evaluation metrics for chunkers')
eval_group.add_argument('--no-eval', action='store_true', default=False,
help="don't do any evaluation")
args = parser.parse_args()
###################
## corpus reader ##
###################
if args.trace:
print 'loading %s' % args.corpus
chunked_corpus = load_corpus_reader(args.corpus, reader=args.reader, fileids=args.fileids)
chunked_corpus.fileids()
fileids = args.fileids
kwargs = {}
if fileids and fileids in chunked_corpus.fileids():
kwargs['fileids'] = [fileids]
if args.trace:
print 'using chunked sentences from %s' % fileids
if args.simplify_tags:
kwargs['simplify_tags'] = True
if isinstance(chunked_corpus, IEERCorpusReader):
chunk_trees = []
if args.trace:
print 'converting ieer parsed docs to chunked sentences'
for doc in chunked_corpus.parsed_docs(**kwargs):
tagged = chunkers.ieertree2conlltags(doc.text)
chunk_trees.append(nltk.chunk.conlltags2tree(tagged))
elif args.flatten_deep_tree and args.shallow_tree:
raise ValueError('only one of --flatten-deep-tree or --shallow-tree can be used')
elif (args.flatten_deep_tree or args.shallow_tree) and not hasattr(chunked_corpus, 'parsed_sents'):
raise ValueError('%s does not have parsed sents' % args.corpus)
elif args.flatten_deep_tree:
if args.trace:
print 'flattening deep trees from %s' % args.corpus
chunk_trees = []
for i, tree in enumerate(chunked_corpus.parsed_sents(**kwargs)):
try:
chunk_trees.append(transforms.flatten_deeptree(tree))
except AttributeError as exc:
if args.trace > 1:
print 'skipping bad tree %d: %s' % (i, exc)
elif args.shallow_tree:
if args.trace:
print 'creating shallow trees from %s' % args.corpus
chunk_trees = []
for i, tree in enumerate(chunked_corpus.parsed_sents(**kwargs)):
try:
chunk_trees.append(transforms.shallow_tree(tree))
except AttributeError as exc:
if args.trace > 1:
print 'skipping bad tree %d: %s' % (i, exc)
elif not hasattr(chunked_corpus, 'chunked_sents'):
raise ValueError('%s does not have chunked sents' % args.corpus)
else:
chunk_trees = chunked_corpus.chunked_sents(**kwargs)
##################
## train chunks ##
##################
nchunks = len(chunk_trees)
if args.fraction == 1.0:
train_chunks = test_chunks = chunk_trees
else:
cutoff = int(math.ceil(nchunks * args.fraction))
train_chunks = chunk_trees[:cutoff]
test_chunks = chunk_trees[cutoff:]
if args.trace:
print '%d chunks, training on %d' % (nchunks, len(train_chunks))
##########################
## tagger based chunker ##
##########################
sequential_classes = {
'u': nltk.tag.UnigramTagger,
'b': nltk.tag.BigramTagger,
't': nltk.tag.TrigramTagger
}
if args.sequential and not args.classifier:
tagger_classes = []
for c in args.sequential:
if c not in sequential_classes:
raise NotImplementedError('%s is not a valid tagger' % c)
tagger_classes.append(sequential_classes[c])
if args.trace:
print 'training %s TagChunker' % args.sequential
chunker = chunkers.TagChunker(train_chunks, tagger_classes)
##############################
## classifier based chunker ##
##############################
if args.classifier:
if args.trace:
print 'training ClassifierChunker with %s classifier' % args.classifier
# TODO: feature extraction options
chunker = chunkers.ClassifierChunker(train_chunks, verbose=args.trace,
classifier_builder=nltk_trainer.classification.args.make_classifier_builder(args))
################
## evaluation ##
################
if not args.no_eval:
if args.trace:
print 'evaluating %s' % chunker.__class__.__name__
print chunker.evaluate(test_chunks)
##############
## pickling ##
##############
if not args.no_pickle:
if args.filename:
fname = os.path.expanduser(args.filename)
else:
# use the last part of the corpus name/path as the prefix
parts = [os.path.split(args.corpus.rstrip('/'))[-1]]
if args.classifier:
parts.append(args.classifier)
elif args.sequential:
parts.append(args.sequential)
name = '%s.pickle' % '_'.join(parts)
fname = os.path.join(os.path.expanduser('~/nltk_data/chunkers'), name)
dump_object(chunker, fname, trace=args.trace)