From ee5e041c460ae46273a79d8a54a47f57dd6fc6f6 Mon Sep 17 00:00:00 2001 From: Carlos Vega <carlos.vega@uni.lu> Date: Tue, 19 Nov 2019 10:16:00 +0100 Subject: [PATCH] added some description to methods --- interface/TextMiningService.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/interface/TextMiningService.py b/interface/TextMiningService.py index 89b1ea3..39760df 100644 --- a/interface/TextMiningService.py +++ b/interface/TextMiningService.py @@ -18,13 +18,17 @@ class TextMiningService(metaclass=ABCMeta): @abstractmethod def getMentions(self, entities: List) -> List[Publication]: + """ + Mentions at publication level + """ pass @abstractmethod def getCoOccurrences(self, entity: str) -> List[str]: - pass - - - + """ + Co-occurrences at publication level. + To-do: decide how to handle resources that can provide co-occurrences at sentence level + """ + pass -- GitLab