Skip to content
Open
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
2 changes: 1 addition & 1 deletion src/raglite/_split_sentences.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
@cache
def _load_sat() -> tuple[SaT, dict[str, Any]]:
"""Load a Segment any Text (SaT) model."""
sat = SaT("sat-3l-sm") # This model makes the best trade-off between speed and accuracy.
sat = SaT("sat-1l-sm") # This model is small and reasonably accurate.
sat_kwargs = {"stride": 128, "block_size": 256, "weighting": "hat"}
return sat, sat_kwargs

Expand Down
Loading