File size: 447 Bytes
c79c37b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
# -----------------------------------------
# This section was autogenerated by edsnlp
# -----------------------------------------
import edsnlp
from pathlib import Path
from typing import Optional, Dict, Any
__version__ = None
def load(
overrides: Optional[Dict[str, Any]] = None,
) -> edsnlp.Pipeline:
artifacts_path = Path(__file__).parent / "artifacts"
model = edsnlp.load(artifacts_path, overrides=overrides)
return model
|