-
Notifications
You must be signed in to change notification settings - Fork 1
/
eng.py
225 lines (197 loc) · 8.66 KB
/
eng.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
# библиотеки проекта
import streamlit as st
import csv
import pysrt
import re
import pandas as pd
import numpy as np
from langdetect import detect
import nltk
nltk.download('punkt')
nltk.download('stopwords')
nltk.download('wordnet')
from nltk.corpus import stopwords
from nltk.tokenize import word_tokenize
from nltk.stem.porter import PorterStemmer
porter_stemmer = PorterStemmer()
from nltk.stem import WordNetLemmatizer
wordnet_lemmatizer = WordNetLemmatizer()
from catboost import CatBoostRegressor
# константы
HTML = r'<.*?>'
TAG = r'{.*?}'
COMMENTS = r'[\(\[][A-Z ]+[\)\]]'
LETTERS = r'[^a-zA-Z\'.,!? ]'
SPACES = r'([ ])\1+'
DOTS = r'[\.]+'
CLEAN = re.compile('[^а-яa-z\s]')
# Функция для определения языка текста
def detect_language(text):
try:
lang = detect(text)
return lang
except:
return None
# функция для первичной обработки текста
def clean_subs(txt):
txt = re.sub(HTML, ' ', txt) #html тэги меняем на пробел
txt = re.sub(TAG, ' ', txt) #тэги меняем на пробел
txt = re.sub(COMMENTS, ' ', txt) #комменты меняем на пробел
txt = re.sub(LETTERS, ' ', txt) #все что не буквы меняем на пробел
txt = re.sub(SPACES, r'\1', txt) #повторяющиеся пробелы меняем на один пробел
txt = re.sub(DOTS, r'.', txt) #многоточие меняем на точку
txt = txt.encode('ascii', 'ignore').decode() #удаляем все что не ascii символы
txt = ".".join(txt.lower().split('.')[1:-1]) #удаляем первый и последний субтитр (обычно это реклама)
txt = txt.replace('. .', '. ')
txt = CLEAN.sub('', txt)
return txt
# функция для удаления стоп слов и токинизации
def stopwords_tokenize(x):
tokens = word_tokenize(x)
tokenization = [word for word in tokens if not word in stopwords.words('english')]
return tokenization
# функция для стеминга и лематизации
def stemmer_lemmatizer(x):
stemmer = [porter_stemmer.stem(s) for s in x]
lemmatizer = [wordnet_lemmatizer.lemmatize(w) for w in stemmer]
return lemmatizer
# функция для fres/fkgl
def fres_fkgl(txt):
sentences = len(re.split(r"[.!?]", txt))
words = len(txt.split(' '))
syllables = sum(txt.count(g) for g in 'aeoiu') + txt.count('y') / 2
fres = 206.835 - (words / sentences) * 1.015 - (syllables / words) * 84.6
fkgl = (words / sentences) * 0.39 + (syllables / words) * 11.8 - 15.59
return fres, fkgl
# функция для расчета cerf
def cerf(predictions):
if predictions < 3.5: return 'A1/A2'
elif predictions < 4: return 'A2/B1'
elif predictions < 5: return 'B1'
elif predictions < 5.5: return 'B1/B2'
elif predictions < 6.5: return 'B2'
elif predictions < 7: return 'B1/C1'
else: return 'C1'
# oxford by CEFR
a1_list = next(csv.reader(open('data/a1.csv', 'r')))
a2_list = next(csv.reader(open('data/a2.csv', 'r')))
b1_list = next(csv.reader(open('data/b1.csv', 'r')))
b2_list = next(csv.reader(open('data/b2.csv', 'r')))
c1_list = next(csv.reader(open('data/c1.csv', 'r')))
# model
model = CatBoostRegressor()
model.load_model('models/catboost_model')
# CSS стиль для центрирования заголовка
title_style = """
<style>
.title {
text-align: center;
}
</style>
"""
# Вставляем CSS стиль перед заголовком
st.markdown(title_style, unsafe_allow_html=True)
# Заголовок
st.markdown("<h1 class='title'>Определение уровня сложности английского</h1>", unsafe_allow_html=True)
image = "https://i.postimg.cc/GpMx0rJ0/image.png"
st.image(image, caption="", use_column_width=True)
# Отступ
st.write("")
# Поле для ввода текста пользователем
st.markdown("<h5 class='title'>Введите текст:</h5>", unsafe_allow_html=True)
user_text = st.text_area("")
if len(user_text) !=0:
if st.button("Определить уровень сложности текста"):
lang = detect_language(user_text)
if lang == 'en':
try:
fres, fkgl = fres_fkgl(user_text)
# Очистка
user_text = clean_subs(user_text)
user_text = stopwords_tokenize(user_text)
user_text = stemmer_lemmatizer(user_text)
# oxford by CEFR
a1 = sum(1 for i in user_text if i in a1_list)
a2 = sum(1 for i in user_text if i in a2_list)
b1 = sum(1 for i in user_text if i in b1_list)
b2 = sum(1 for i in user_text if i in b2_list)
c1 = sum(1 for i in user_text if i in c1_list)
count_word = a1 + a2 + b1 + b2 + c1
a1 = a1 / count_word
a2 = a2 / count_word
b1 = b1 / count_word
b2 = b2 / count_word
c1 = c1 / count_word
df = pd.DataFrame(columns=['subtitles', 'a1', 'a2', 'b1', 'b2', 'c1', 'fres', 'fkgl'])
data = []
data.append({'subtitles': ' '.join(user_text),
'a1': a1,
'a2': a2,
'b1': b1,
'b2': b2,
'c1': c1,
'fres': fres,
'fkgl': fkgl})
df = pd.concat([df, pd.DataFrame(data)], ignore_index=True)
predictions = model.predict(df)
cerf = cerf(predictions)
st.write(f'Уровень сложности: {cerf}')
except:
st.write(f'Уровень сложности: A2')
else:
st.write(f"Похоже, что веденный текст слишком короткий или написан не на английском языке, попробуйте изменить запрос")
# Описание поля загрузки файла
st.write("")
st.markdown("<h5 class='title'>Для отпределиния уровня сложности англоязычных фильмов загрузите файл с субтитрами:</h5>", unsafe_allow_html=True)
# st.write("Для отпределиния уровня сложности англоязычных фильмов загрузите файл с субтитрами:")
# Поле для загрузки файла .srt
srt_file = st.file_uploader("", type=".srt")
if srt_file:
# получаем байтовый поток для загруженного файла
file_bytes = srt_file.read()
file_string = file_bytes.decode('latin-1')
# Обработка загруженного файла
subs = pysrt.from_string(file_string)
if len(subs) == 0:
file_string = file_bytes.decode('utf-16')
subs = pysrt.from_string(file_string)
subs = ' '.join([i.text for i in subs])
# fres/fkgl
fres, fkgl = fres_fkgl(subs)
# Очистка
subs = clean_subs(subs)
subs = stopwords_tokenize(subs)
subs = stemmer_lemmatizer(subs)
# oxford by CEFR
a1 = sum(1 for i in subs if i in a1_list)
a2 = sum(1 for i in subs if i in a2_list)
b1 = sum(1 for i in subs if i in b1_list)
b2 = sum(1 for i in subs if i in b2_list)
c1 = sum(1 for i in subs if i in c1_list)
count_word = a1 + a2 + b1 + b2 + c1
a1 = a1 / count_word
a2 = a2 / count_word
b1 = b1 / count_word
b2 = b2 / count_word
c1 = c1 / count_word
if len(subs)<100:
st.text('Недостаточно данных')
else:
df = pd.DataFrame(columns=['subtitles', 'a1', 'a2', 'b1', 'b2', 'c1', 'fres', 'fkgl'])
data = []
for i in range(len(subs) // 100):
data.append({'subtitles': ' '.join(subs[i*100 : (i + 1)*100]),
'a1': a1,
'a2': a2,
'b1': b1,
'b2': b2,
'c1': c1,
'fres': fres,
'fkgl': fkgl})
df = pd.concat([df, pd.DataFrame(data)], ignore_index=True)
predictions = model.predict(df)
predictions = np.mean(predictions)
# Кнопка "Определить уровень сложности"
if st.button("Определить уровень сложности"):
cerf = cerf(predictions)
st.write(f'Уровень сложности: {cerf}')