Spaces:
Runtime error
Runtime error
File size: 226 Bytes
58c612d |
1 2 3 4 5 6 7 8 9 10 11 12 |
from types import SimpleNamespace
cfg = SimpleNamespace(**{})
# sentence embedding model configs
cfg.sent_model_name = "sentence-transformers/all-MiniLM-L6-v2"
cfg.sent_model_seq_limit = 256
# summarization model configs
|