2016-11-26 02:45:45 +03:00
|
|
|
from __future__ import unicode_literals
|
2015-10-08 04:00:11 +03:00
|
|
|
import plac
|
|
|
|
import json
|
|
|
|
import random
|
2016-11-26 02:45:45 +03:00
|
|
|
import pathlib
|
2015-10-08 04:00:11 +03:00
|
|
|
|
2016-11-25 20:19:33 +03:00
|
|
|
from spacy.tokens import Doc
|
|
|
|
from spacy.syntax.nonproj import PseudoProjectivity
|
|
|
|
from spacy.language import Language
|
2015-10-08 04:00:11 +03:00
|
|
|
from spacy.gold import GoldParse
|
|
|
|
from spacy.tagger import Tagger
|
2017-03-17 01:08:15 +03:00
|
|
|
from spacy.pipeline import DependencyParser, BeamDependencyParser
|
2015-10-08 04:00:11 +03:00
|
|
|
from spacy.syntax.parser import get_templates
|
2016-11-25 20:19:33 +03:00
|
|
|
from spacy.syntax.arc_eager import ArcEager
|
2015-10-08 04:00:11 +03:00
|
|
|
from spacy.scorer import Scorer
|
2017-01-09 18:53:46 +03:00
|
|
|
from spacy.language_data.tag_map import TAG_MAP as DEFAULT_TAG_MAP
|
2016-05-23 13:53:00 +03:00
|
|
|
import spacy.attrs
|
2016-11-26 02:45:45 +03:00
|
|
|
import io
|
2015-10-08 04:00:11 +03:00
|
|
|
|
|
|
|
|
2017-03-11 20:11:05 +03:00
|
|
|
def read_conllx(loc, n=0):
|
2016-11-26 02:45:45 +03:00
|
|
|
with io.open(loc, 'r', encoding='utf8') as file_:
|
2015-10-08 04:00:11 +03:00
|
|
|
text = file_.read()
|
2017-03-11 20:11:05 +03:00
|
|
|
i = 0
|
2015-10-08 04:00:11 +03:00
|
|
|
for sent in text.strip().split('\n\n'):
|
|
|
|
lines = sent.strip().split('\n')
|
|
|
|
if lines:
|
2016-05-23 13:53:00 +03:00
|
|
|
while lines[0].startswith('#'):
|
2015-10-08 04:00:11 +03:00
|
|
|
lines.pop(0)
|
|
|
|
tokens = []
|
|
|
|
for line in lines:
|
2017-03-22 01:00:13 +03:00
|
|
|
id_, word, lemma, pos, tag, morph, head, dep, _1, \
|
|
|
|
_2 = line.split('\t')
|
2017-03-17 01:08:15 +03:00
|
|
|
if '-' in id_ or '.' in id_:
|
2015-10-08 04:00:11 +03:00
|
|
|
continue
|
2016-11-25 20:19:33 +03:00
|
|
|
try:
|
|
|
|
id_ = int(id_) - 1
|
|
|
|
head = (int(head) - 1) if head != '0' else id_
|
|
|
|
dep = 'ROOT' if dep == 'root' else dep
|
|
|
|
tokens.append((id_, word, tag, head, dep, 'O'))
|
|
|
|
except:
|
|
|
|
print(line)
|
|
|
|
raise
|
|
|
|
tuples = [list(t) for t in zip(*tokens)]
|
|
|
|
yield (None, [[tuples, []]])
|
2017-03-11 20:11:05 +03:00
|
|
|
i += 1
|
|
|
|
if n >= 1 and i >= n:
|
|
|
|
break
|
2016-11-25 20:19:33 +03:00
|
|
|
|
|
|
|
|
|
|
|
def score_model(vocab, tagger, parser, gold_docs, verbose=False):
|
2015-10-08 04:00:11 +03:00
|
|
|
scorer = Scorer()
|
|
|
|
for _, gold_doc in gold_docs:
|
2016-11-25 20:19:33 +03:00
|
|
|
for (ids, words, tags, heads, deps, entities), _ in gold_doc:
|
|
|
|
doc = Doc(vocab, words=words)
|
|
|
|
tagger(doc)
|
|
|
|
parser(doc)
|
2016-11-26 02:45:45 +03:00
|
|
|
PseudoProjectivity.deprojectivize(doc)
|
2016-11-25 20:19:33 +03:00
|
|
|
gold = GoldParse(doc, tags=tags, heads=heads, deps=deps)
|
|
|
|
scorer.score(doc, gold, verbose=verbose)
|
2015-10-08 04:00:11 +03:00
|
|
|
return scorer
|
|
|
|
|
|
|
|
|
2017-03-17 01:08:15 +03:00
|
|
|
def main(lang_name, train_loc, dev_loc, model_dir, clusters_loc=None):
|
|
|
|
LangClass = spacy.util.get_lang_class(lang_name)
|
2015-10-08 04:00:11 +03:00
|
|
|
train_sents = list(read_conllx(train_loc))
|
2016-11-25 20:19:33 +03:00
|
|
|
train_sents = PseudoProjectivity.preprocess_training_data(train_sents)
|
2016-11-26 02:45:45 +03:00
|
|
|
|
2016-11-25 20:19:33 +03:00
|
|
|
actions = ArcEager.get_actions(gold_parses=train_sents)
|
|
|
|
features = get_templates('basic')
|
2017-03-11 20:11:05 +03:00
|
|
|
|
2016-11-26 02:45:45 +03:00
|
|
|
model_dir = pathlib.Path(model_dir)
|
2017-03-17 01:08:15 +03:00
|
|
|
if not model_dir.exists():
|
|
|
|
model_dir.mkdir()
|
2017-01-09 02:55:44 +03:00
|
|
|
if not (model_dir / 'deps').exists():
|
|
|
|
(model_dir / 'deps').mkdir()
|
2017-03-17 01:08:15 +03:00
|
|
|
if not (model_dir / 'pos').exists():
|
|
|
|
(model_dir / 'pos').mkdir()
|
2017-01-09 18:53:46 +03:00
|
|
|
with (model_dir / 'deps' / 'config.json').open('wb') as file_:
|
|
|
|
file_.write(
|
|
|
|
json.dumps(
|
|
|
|
{'pseudoprojective': True, 'labels': actions, 'features': features}).encode('utf8'))
|
2017-03-17 01:08:15 +03:00
|
|
|
|
|
|
|
vocab = LangClass.Defaults.create_vocab()
|
|
|
|
if not (model_dir / 'vocab').exists():
|
|
|
|
(model_dir / 'vocab').mkdir()
|
|
|
|
else:
|
|
|
|
if (model_dir / 'vocab' / 'strings.json').exists():
|
|
|
|
with (model_dir / 'vocab' / 'strings.json').open() as file_:
|
|
|
|
vocab.strings.load(file_)
|
|
|
|
if (model_dir / 'vocab' / 'lexemes.bin').exists():
|
|
|
|
vocab.load_lexemes(model_dir / 'vocab' / 'lexemes.bin')
|
|
|
|
|
|
|
|
if clusters_loc is not None:
|
|
|
|
clusters_loc = pathlib.Path(clusters_loc)
|
|
|
|
with clusters_loc.open() as file_:
|
|
|
|
for line in file_:
|
|
|
|
try:
|
|
|
|
cluster, word, freq = line.split()
|
|
|
|
except ValueError:
|
|
|
|
continue
|
|
|
|
lex = vocab[word]
|
|
|
|
lex.cluster = int(cluster[::-1], 2)
|
2016-11-25 20:19:33 +03:00
|
|
|
# Populate vocab
|
|
|
|
for _, doc_sents in train_sents:
|
|
|
|
for (ids, words, tags, heads, deps, ner), _ in doc_sents:
|
|
|
|
for word in words:
|
|
|
|
_ = vocab[word]
|
2016-11-26 02:45:45 +03:00
|
|
|
for dep in deps:
|
|
|
|
_ = vocab[dep]
|
|
|
|
for tag in tags:
|
|
|
|
_ = vocab[tag]
|
2017-03-17 01:08:15 +03:00
|
|
|
if vocab.morphology.tag_map:
|
2017-01-09 18:53:46 +03:00
|
|
|
for tag in tags:
|
2017-03-17 01:08:15 +03:00
|
|
|
assert tag in vocab.morphology.tag_map, repr(tag)
|
|
|
|
tagger = Tagger(vocab)
|
2017-03-11 20:11:05 +03:00
|
|
|
parser = DependencyParser(vocab, actions=actions, features=features, L1=0.0)
|
|
|
|
|
2017-03-17 01:08:15 +03:00
|
|
|
for itn in range(30):
|
2017-03-11 20:11:05 +03:00
|
|
|
loss = 0.
|
2015-10-08 04:00:11 +03:00
|
|
|
for _, doc_sents in train_sents:
|
|
|
|
for (ids, words, tags, heads, deps, ner), _ in doc_sents:
|
2016-11-25 20:19:33 +03:00
|
|
|
doc = Doc(vocab, words=words)
|
|
|
|
gold = GoldParse(doc, tags=tags, heads=heads, deps=deps)
|
|
|
|
tagger(doc)
|
2017-03-11 20:11:05 +03:00
|
|
|
loss += parser.update(doc, gold, itn=itn)
|
2016-11-25 20:19:33 +03:00
|
|
|
doc = Doc(vocab, words=words)
|
|
|
|
tagger.update(doc, gold)
|
2015-10-08 04:00:11 +03:00
|
|
|
random.shuffle(train_sents)
|
2016-11-25 20:19:33 +03:00
|
|
|
scorer = score_model(vocab, tagger, parser, read_conllx(dev_loc))
|
2017-03-11 20:11:05 +03:00
|
|
|
print('%d:\t%.3f\t%.3f\t%.3f' % (itn, loss, scorer.uas, scorer.tags_acc))
|
2017-03-22 01:18:54 +03:00
|
|
|
nlp = LangClass(vocab=vocab, tagger=tagger, parser=parser)
|
2015-10-08 04:00:11 +03:00
|
|
|
nlp.end_training(model_dir)
|
2016-11-25 20:19:33 +03:00
|
|
|
scorer = score_model(vocab, tagger, parser, read_conllx(dev_loc))
|
2015-10-08 04:00:11 +03:00
|
|
|
print('%d:\t%.3f\t%.3f\t%.3f' % (itn, scorer.uas, scorer.las, scorer.tags_acc))
|
2017-03-11 20:11:05 +03:00
|
|
|
|
2015-10-08 04:00:11 +03:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
plac.call(main)
|