2017-04-15 13:05:47 +03:00
|
|
|
# coding: utf8
|
|
|
|
from __future__ import division, print_function, unicode_literals
|
2015-03-11 04:07:03 +03:00
|
|
|
|
2018-03-27 20:23:02 +03:00
|
|
|
from .gold import tags_to_entities, GoldParse
|
2015-05-27 04:18:16 +03:00
|
|
|
|
2015-04-05 23:29:30 +03:00
|
|
|
|
2015-05-24 21:07:18 +03:00
|
|
|
class PRFScore(object):
|
2017-04-15 12:59:21 +03:00
|
|
|
"""
|
|
|
|
A precision / recall / F score
|
|
|
|
"""
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
|
2015-05-24 21:07:18 +03:00
|
|
|
def __init__(self):
|
|
|
|
self.tp = 0
|
|
|
|
self.fp = 0
|
|
|
|
self.fn = 0
|
|
|
|
|
|
|
|
def score_set(self, cand, gold):
|
|
|
|
self.tp += len(cand.intersection(gold))
|
|
|
|
self.fp += len(cand - gold)
|
|
|
|
self.fn += len(gold - cand)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def precision(self):
|
|
|
|
return self.tp / (self.tp + self.fp + 1e-100)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def recall(self):
|
|
|
|
return self.tp / (self.tp + self.fn + 1e-100)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def fscore(self):
|
|
|
|
p = self.precision
|
|
|
|
r = self.recall
|
|
|
|
return 2 * ((p * r) / (p + r + 1e-100))
|
|
|
|
|
|
|
|
|
2015-03-11 04:07:03 +03:00
|
|
|
class Scorer(object):
|
|
|
|
def __init__(self, eval_punct=False):
|
2015-05-24 21:07:18 +03:00
|
|
|
self.tokens = PRFScore()
|
|
|
|
self.sbd = PRFScore()
|
|
|
|
self.unlabelled = PRFScore()
|
|
|
|
self.labelled = PRFScore()
|
|
|
|
self.tags = PRFScore()
|
|
|
|
self.ner = PRFScore()
|
2015-03-11 04:07:03 +03:00
|
|
|
self.eval_punct = eval_punct
|
|
|
|
|
|
|
|
@property
|
|
|
|
def tags_acc(self):
|
2015-05-24 21:07:18 +03:00
|
|
|
return self.tags.fscore * 100
|
2015-05-24 03:49:56 +03:00
|
|
|
|
|
|
|
@property
|
|
|
|
def token_acc(self):
|
2015-06-28 07:21:38 +03:00
|
|
|
return self.tokens.precision * 100
|
2015-03-11 04:07:03 +03:00
|
|
|
|
|
|
|
@property
|
|
|
|
def uas(self):
|
2015-05-24 21:07:18 +03:00
|
|
|
return self.unlabelled.fscore * 100
|
2015-03-11 04:07:03 +03:00
|
|
|
|
|
|
|
@property
|
|
|
|
def las(self):
|
2015-05-24 21:07:18 +03:00
|
|
|
return self.labelled.fscore * 100
|
2015-03-11 04:07:03 +03:00
|
|
|
|
|
|
|
@property
|
|
|
|
def ents_p(self):
|
2015-05-27 04:18:16 +03:00
|
|
|
return self.ner.precision * 100
|
2015-03-11 04:07:03 +03:00
|
|
|
|
|
|
|
@property
|
|
|
|
def ents_r(self):
|
2015-05-27 04:18:16 +03:00
|
|
|
return self.ner.recall * 100
|
2015-04-19 11:31:31 +03:00
|
|
|
|
2015-03-11 04:07:03 +03:00
|
|
|
@property
|
|
|
|
def ents_f(self):
|
2015-05-27 04:18:16 +03:00
|
|
|
return self.ner.fscore * 100
|
2015-03-11 04:07:03 +03:00
|
|
|
|
2016-10-09 13:24:24 +03:00
|
|
|
@property
|
|
|
|
def scores(self):
|
|
|
|
return {
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
"uas": self.uas,
|
|
|
|
"las": self.las,
|
|
|
|
"ents_p": self.ents_p,
|
|
|
|
"ents_r": self.ents_r,
|
|
|
|
"ents_f": self.ents_f,
|
|
|
|
"tags_acc": self.tags_acc,
|
|
|
|
"token_acc": self.token_acc,
|
2016-10-09 13:24:24 +03:00
|
|
|
}
|
|
|
|
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
def score(self, tokens, gold, verbose=False, punct_labels=("p", "punct")):
|
2018-03-27 20:23:02 +03:00
|
|
|
if len(tokens) != len(gold):
|
2018-05-01 02:33:20 +03:00
|
|
|
gold = GoldParse.from_annot_tuples(tokens, zip(*gold.orig_annot))
|
2015-05-24 21:07:18 +03:00
|
|
|
gold_deps = set()
|
|
|
|
gold_tags = set()
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
gold_ents = set(tags_to_entities([annot[-1] for annot in gold.orig_annot]))
|
2015-05-24 21:07:18 +03:00
|
|
|
for id_, word, tag, head, dep, ner in gold.orig_annot:
|
2015-05-30 19:24:32 +03:00
|
|
|
gold_tags.add((id_, tag))
|
2017-03-16 17:38:28 +03:00
|
|
|
if dep not in (None, "") and dep.lower() not in punct_labels:
|
2015-05-27 04:18:16 +03:00
|
|
|
gold_deps.add((id_, head, dep.lower()))
|
2015-05-24 21:07:18 +03:00
|
|
|
cand_deps = set()
|
|
|
|
cand_tags = set()
|
|
|
|
for token in tokens:
|
2015-06-07 20:10:32 +03:00
|
|
|
if token.orth_.isspace():
|
|
|
|
continue
|
2015-05-30 19:24:32 +03:00
|
|
|
gold_i = gold.cand_to_gold[token.i]
|
|
|
|
if gold_i is None:
|
2018-03-27 20:23:02 +03:00
|
|
|
self.tokens.fp += 1
|
2015-05-30 19:24:32 +03:00
|
|
|
else:
|
2015-06-28 07:21:38 +03:00
|
|
|
self.tokens.tp += 1
|
2015-05-30 19:24:32 +03:00
|
|
|
cand_tags.add((gold_i, token.tag_))
|
2016-02-03 00:59:06 +03:00
|
|
|
if token.dep_.lower() not in punct_labels and token.orth_.strip():
|
2015-05-24 21:07:18 +03:00
|
|
|
gold_head = gold.cand_to_gold[token.head.i]
|
|
|
|
# None is indistinct, so we can't just add it to the set
|
|
|
|
# Multiple (None, None) deps are possible
|
|
|
|
if gold_i is None or gold_head is None:
|
|
|
|
self.unlabelled.fp += 1
|
|
|
|
self.labelled.fp += 1
|
|
|
|
else:
|
2015-05-27 04:18:16 +03:00
|
|
|
cand_deps.add((gold_i, gold_head, token.dep_.lower()))
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
if "-" not in [token[-1] for token in gold.orig_annot]:
|
2015-05-28 23:39:08 +03:00
|
|
|
cand_ents = set()
|
|
|
|
for ent in tokens.ents:
|
|
|
|
first = gold.cand_to_gold[ent.start]
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
last = gold.cand_to_gold[ent.end - 1]
|
2015-05-28 23:39:08 +03:00
|
|
|
if first is None or last is None:
|
|
|
|
self.ner.fp += 1
|
|
|
|
else:
|
|
|
|
cand_ents.add((ent.label_, first, last))
|
|
|
|
self.ner.score_set(cand_ents, gold_ents)
|
2015-05-27 04:18:16 +03:00
|
|
|
self.tags.score_set(cand_tags, gold_tags)
|
2015-05-24 21:07:18 +03:00
|
|
|
self.labelled.score_set(cand_deps, gold_deps)
|
|
|
|
self.unlabelled.score_set(
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
set(item[:2] for item in cand_deps), set(item[:2] for item in gold_deps)
|
2015-05-24 21:07:18 +03:00
|
|
|
)
|
2015-06-14 18:45:50 +03:00
|
|
|
if verbose:
|
|
|
|
gold_words = [item[1] for item in gold.orig_annot]
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
for w_id, h_id, dep in cand_deps - gold_deps:
|
|
|
|
print("F", gold_words[w_id], dep, gold_words[h_id])
|
|
|
|
for w_id, h_id, dep in gold_deps - cand_deps:
|
|
|
|
print("M", gold_words[w_id], dep, gold_words[h_id])
|