Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
igorsterner authored Jul 29, 2024
1 parent 371e31c commit f9cbe38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ sat.split(["This is a test This is another test.", "And some more texts..."])
# use our '-sm' models for general sentence segmentation tasks
sat_sm = SaT("sat-3l-sm")
# this will be especially better for noisy text
sat.split("this is a test this is another test")
sat_sm.split("this is a test this is another test")
# returns ["this is a test", "this is another test"]

# use trained lora modules for strong adaptation to language & domain/style
sat_adapted = SaT("sat-3l-sm", lang_code="en", style="ud"))
sat_adapted = SaT("sat-3l-sm", lang_code="en", style="ud")
sat.split("This is a test This is another test.")
```

Expand Down

0 comments on commit f9cbe38

Please sign in to comment.