Skip to content

Commit

Permalink
Fix type mismatch in check_label_groups parameter in spacy_recognizer (
Browse files Browse the repository at this point in the history
  • Loading branch information
Nitrino authored Aug 14, 2023
1 parent a2f7785 commit 3effc14
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def __init__(
supported_language: str = "en",
supported_entities: Optional[List[str]] = None,
ner_strength: float = 0.85,
check_label_groups: Optional[Tuple[Set, Set]] = None,
check_label_groups: Optional[List[Tuple[Set, Set]]] = None,
context: Optional[List[str]] = None,
):
self.ner_strength = ner_strength
Expand Down

0 comments on commit 3effc14

Please sign in to comment.