-
Notifications
You must be signed in to change notification settings - Fork 0
/
calculate_similarity.py
56 lines (46 loc) · 1.82 KB
/
calculate_similarity.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
import re
import numpy as np
import pandas as pd
import pickle
import requests
from sklearn.feature_extraction.text import CountVectorizer
# 불필요한 텍스트를 제거하는 함수
def clean_ocr_result(ocr_result):
patterns = [
r'.*지금 확인해 보세요!',
r'.*메시지카드',
r'.*감동카드',
r'사용방법.*',
r'수량.*'
]
for pattern in patterns:
ocr_result = re.sub(pattern, '', ocr_result, flags=re.DOTALL)
return ocr_result
# 주요 텍스트 추출 함수
def extract_main_text(ocr_result):
return clean_ocr_result(ocr_result)
# N-gram 기반 유사도 계산 함수
def ngram_similarity(ocr_text, origin_name, n=3):
vectorizer = CountVectorizer(analyzer='char', ngram_range=(n, n))
ocr_vec = vectorizer.fit_transform([ocr_text])
origin_vec = vectorizer.transform([origin_name])
similarity = np.dot(ocr_vec, origin_vec.T).toarray()[0][0]
return similarity / max(ocr_vec.sum(), origin_vec.sum())
# OCR 결과와 가장 유사한 항목의 인덱스 찾기 함수
def find_most_similar(ocr_text, data_list):
best_match_index = -1
best_match_score = 0.0
ocr_text = extract_main_text(ocr_text)
for index, item in enumerate(data_list):
origin_name = item["origin_name"]
# N-gram 기반 유사도 계산
score = ngram_similarity(ocr_text, origin_name)
if score > best_match_score:
best_match_score = score
best_match_index = index
return best_match_index, best_match_score
# 특정 OCR 텍스트를 입력받아 가장 유사한 데이터 인덱스를 출력하는 함수
def get_most_similar_index(ocr_text, data_list):
# 가장 유사한 항목의 인덱스와 유사도 점수
index, score = find_most_similar(ocr_text, data_list)
return index