-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ Added UDEBO descriptions enrichment (#77)
* ✨ Added UDEBO descriptions enrichment Signed-off-by: Marcos Martinez <Marcos.Martinez.Galindo@ibm.com> * 🎨 Fix flake Signed-off-by: Marcos Martinez <Marcos.Martinez.Galindo@ibm.com> * ✅ Gensim issue 3525 Signed-off-by: Marcos Martinez <Marcos.Martinez.Galindo@ibm.com> * ✅ Gensim issue 3525 Signed-off-by: Marcos Martinez <Marcos.Martinez.Galindo@ibm.com> * ✅ Skip LM tests due to disk constrains Signed-off-by: Marcos Martinez <Marcos.Martinez.Galindo@ibm.com> --------- Signed-off-by: Marcos Martinez <Marcos.Martinez.Galindo@ibm.com>
- Loading branch information
Showing
9 changed files
with
635 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
pytest>=7.0 | ||
pytest-cov>=3.0.0 | ||
setuptools>=65.5.1 | ||
scipy<1.13.0 | ||
flair>=0.13 | ||
flake8>=4.0.1 | ||
coverage>=6.4.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
import pytest | ||
import spacy | ||
|
||
from zshot import PipelineConfig | ||
from zshot.linker import LinkerSMXM | ||
from zshot.utils.data_models import Entity | ||
from zshot.utils.enrichment.description_enrichment import PreTrainedLMExtensionStrategy, \ | ||
FineTunedLMExtensionStrategy, SummarizationStrategy, ParaphrasingStrategy, EntropyHeuristic | ||
|
||
|
||
@pytest.mark.skip(reason="Too expensive to run on every commit") | ||
def test_pretrained_lm_extension_strategy(): | ||
description = "The name of a company" | ||
strategy = PreTrainedLMExtensionStrategy() | ||
num_variations = 3 | ||
|
||
desc_variations = strategy.alter_description( | ||
description, num_variations=num_variations | ||
) | ||
|
||
assert len(desc_variations) == 3 and len(set(desc_variations + [description])) == 4 | ||
|
||
|
||
@pytest.mark.skip(reason="Too expensive to run on every commit") | ||
def test_finetuned_lm_extension_strategy(): | ||
description = "The name of a company" | ||
strategy = FineTunedLMExtensionStrategy() | ||
num_variations = 3 | ||
|
||
desc_variations = strategy.alter_description( | ||
description, num_variations=num_variations | ||
) | ||
|
||
assert len(desc_variations) == 3 and len(set(desc_variations + [description])) == 4 | ||
|
||
|
||
@pytest.mark.skip(reason="Too expensive to run on every commit") | ||
def test_summarization_strategy(): | ||
description = "The name of a company" | ||
strategy = SummarizationStrategy() | ||
num_variations = 3 | ||
|
||
desc_variations = strategy.alter_description( | ||
description, num_variations=num_variations | ||
) | ||
|
||
assert len(desc_variations) == 3 and len(set(desc_variations + [description])) == 4 | ||
|
||
|
||
@pytest.mark.skip(reason="Too expensive to run on every commit") | ||
def test_paraphrasing_strategy(): | ||
description = "The name of a company" | ||
strategy = ParaphrasingStrategy() | ||
num_variations = 3 | ||
|
||
desc_variations = strategy.alter_description( | ||
description, num_variations=num_variations | ||
) | ||
|
||
assert len(desc_variations) == 3 and len(set(desc_variations + [description])) == 4 | ||
|
||
|
||
@pytest.mark.skip(reason="Too expensive to run on every commit") | ||
def test_entropy_heuristic(): | ||
def check_is_tuple(x): | ||
return isinstance(x, tuple) and len(x) == 2 and isinstance(x[0], str) and isinstance(x[1], float) | ||
|
||
entropy_heuristic = EntropyHeuristic() | ||
dataset = [ | ||
{'tokens': ['IBM', 'headquarters', 'are', 'located', 'in', 'Armonk', '.'], | ||
'ner_tags': ['B-company', 'O', 'O', 'O', 'O', 'B-location', 'O']} | ||
] | ||
entities = [ | ||
Entity(name="company", description="The name of a company"), | ||
Entity(name="location", description="A physical location"), | ||
] | ||
|
||
nlp = spacy.blank("en") | ||
nlp_config = PipelineConfig( | ||
linker=LinkerSMXM(), | ||
entities=entities | ||
) | ||
nlp.add_pipe("zshot", config=nlp_config, last=True) | ||
strategy = ParaphrasingStrategy() | ||
num_variations = 3 | ||
|
||
variations = entropy_heuristic.evaluate_variations_strategy(dataset, | ||
entities=entities, | ||
alter_strategy=strategy, | ||
num_variations=num_variations, | ||
nlp_pipeline=nlp) | ||
|
||
assert len(variations) == 2 | ||
assert len(variations[0]) == 3 and len(variations[1]) == 3 | ||
assert all([check_is_tuple(x) for x in variations[0]]) | ||
assert all([check_is_tuple(x) for x in variations[1]]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
from zshot.utils.enrichment.description_enrichment import ParaphrasingStrategy, \ | ||
FineTunedLMExtensionStrategy, PreTrainedLMExtensionStrategy, SummarizationStrategy, \ | ||
EntropyHeuristic # noqa: F401 |
Oops, something went wrong.