Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions medcat-v2/medcat/cat.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,10 @@ def _recreate_pipe(self, model_load_path: Optional[str] = None,
addon_config_dict=addon_config_dict)
return self._pipeline

@property
def pipe(self) -> Pipeline:
return self._pipeline

@classmethod
def get_init_attrs(cls) -> list[str]:
return ['cdb', 'vocab']
Expand Down
Loading