added-fix

This commit is contained in:
Untone 2024-09-29 14:12:55 +03:00
parent 19a93d2443
commit 9c0d3cf4e1
2 changed files with 11 additions and 19 deletions

View File

@ -112,14 +112,18 @@ async def messages_routing(msg, state):
text += '\n'
normalized_text = normalize(text)
logger.info(f"normalized text: {normalized_text}")
toxic_score = detector(normalized_text)
sw_score = 0
if toxic_score < 0.91:
logger.info('re-check stopwords in combinations')
stopwords_detected = check_stopwords(normalized_text)
for stopword in stopwords_detected:
sw_score += detect(stopword)
toxic_perc = toxic_score * 100
logger.info(f'original toxic: {toxic_perc}')
if toxic_score < 0.91:
logger.info('re-check without spaces')
toxic_perc += check_stopwords(normalized_text)
logger.info(f"text: {normalized_text}\ntoxic: {toxic_perc}%")
toxic_perc = (toxic_score + sw_score) * 100
logger.info(f'added stopwords toxic: {sw_score*100}')
await redis.set(f"toxic:{cid}", mid)
await redis.set(f"toxic:{cid}:{uid}:{mid}", math.floor(toxic_perc), ex=60 * 60 * 24 * 3)
if toxic_score > 0.75:

View File

@ -72,16 +72,7 @@ def check_stopwords(text):
Examples:
>>> check_stopwords("this is a хуй")
40
>>> check_stopwords("this is clean")
0
>>> check_stopwords("хуй is a хуй")
80
>>> check_stopwords("clean is clean")
0
{'хуй'}
"""
# Normalize the text by splitting into words
@ -90,10 +81,7 @@ def check_stopwords(text):
# Check for any intersection with stopword_set
stopwords_found = stopword_set.intersection(words)
# Calculate the score based on the number of stopwords found
score = 90 + len(stopwords_found)
return score
return stopwords_found
# Example usage
if __name__ == "__main__":