stefan-it commited on
Commit
99f7dc0
1 Parent(s): 1daa92a

readme: add initial version

Browse files
Files changed (1) hide show
  1. README.md +19 -0
README.md CHANGED
@@ -1,3 +1,22 @@
1
  ---
2
  license: cc-by-4.0
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-4.0
3
+ base_model: benjamin/wtp-canine-s-12l
4
  ---
5
+
6
+ # Where's the Point? A `wtpsplit` model for Historical German
7
+
8
+ This repository hosts a model that was trained using the awesome [`wtpsplit`](https://github.com/bminixhofer/wtpsplit) library.
9
+
10
+ The model was trained on OCR'ed German books from 1819 to 1944 extracted from the [NCC](https://huggingface.co/datasets/NbAiLab/NCC) corpus.
11
+
12
+ Please note: the model is constantly updated and work in progress.
13
+
14
+ # Usage
15
+
16
+ The following snippet shows how to use this model:
17
+
18
+ ```python
19
+ from wtpsplit import WtP
20
+
21
+ model.split("Das ist einer schöner Tag... Wie geht es dir?", lang_code="de", style="digibok")
22
+ ```