inkoziev commited on
Commit
c1692f5
1 Parent(s): 15787e1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +35 -0
README.md CHANGED
@@ -1,3 +1,38 @@
1
  ---
2
  license: cc-by-nc-sa-4.0
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-nc-sa-4.0
3
+ language:
4
+ - ru
5
  ---
6
+
7
+ ### Модель предсказания ударения для русских слов
8
+
9
+ Файлы модели и словари автоматически скачиваются из этого репозитория кодом проекта [https://github.com/Koziev/StressModel](https://github.com/Koziev/StressModel).
10
+
11
+ Пример использования:
12
+
13
+ ```
14
+ import stress_model
15
+
16
+ def render(word):
17
+ px = accentuator.predict2(word)
18
+ print(' | '.join(accentuator.render_stress(word, pos) for pos in px))
19
+
20
+
21
+ if __name__ == '__main__':
22
+ accentuator = stress_model.AccentuatorWrapperWithDictionary()
23
+ render('моя')
24
+ render('насыпать')
25
+ render('кошка')
26
+ render('ничегошеньки')
27
+ ```
28
+
29
+ Этот код выдаст следующее:
30
+
31
+ ```
32
+ мо́я | моя́
33
+ насы́пать | насыпа́ть
34
+ ко́шка
35
+ ничего́шеньки
36
+ ```
37
+
38
+