oliverguhr commited on
Commit
31085da
1 Parent(s): ca76b17

languages update

Browse files
Files changed (1) hide show
  1. README.md +24 -0
README.md CHANGED
@@ -90,4 +90,28 @@ The performance differs for the single punctuation markers as hyphens and colons
90
  | macro average | 0.736 | 0.784 | 0.742 | 0.718 | 0.784 |
91
  | micro average | 0.975 | 0.987 | 0.977 | 0.972 | 0.983 |
92
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
93
 
 
90
  | macro average | 0.736 | 0.784 | 0.742 | 0.718 | 0.784 |
91
  | micro average | 0.975 | 0.987 | 0.977 | 0.972 | 0.983 |
92
 
93
+ ## Languages
94
+
95
+ ### Models
96
+
97
+ | Languages | Model |
98
+ | ------------------------------------------ | ------------------------------------------------------------ |
99
+ | English, Italian, French and German | [oliverguhr/fullstop-punctuation-multilang-large](https://huggingface.co/oliverguhr/fullstop-punctuation-multilang-large) |
100
+ | English, Italian, French, German and Dutch | [oliverguhr/fullstop-punctuation-multilingual-sonar-base](https://huggingface.co/oliverguhr/fullstop-punctuation-multilingual-sonar-base) |
101
+ | Dutch | [oliverguhr/fullstop-dutch-sonar-punctuation-prediction](https://huggingface.co/oliverguhr/fullstop-dutch-sonar-punctuation-prediction) |
102
+
103
+ ### Community Models
104
+
105
+ | Languages | Model |
106
+ | ------------------------------------------ | ------------------------------------------------------------ |
107
+ |English, German, French, Spanish, Bulgarian, Italian, Polish, Dutch, Czech, Portugese, Slovak, Slovenian| [kredor/punctuate-all](https://huggingface.co/kredor/punctuate-all) |
108
+ | Catalan | [softcatala/fullstop-catalan-punctuation-prediction](https://huggingface.co/softcatala/fullstop-catalan-punctuation-prediction) |
109
+
110
+ You can use different models by setting the model parameter:
111
+
112
+ ```python
113
+ model = PunctuationModel(model = "oliverguhr/fullstop-dutch-punctuation-prediction")
114
+ ```
115
+
116
+
117