-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathfilters.py
103 lines (76 loc) · 2.66 KB
/
filters.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
from thefuzz import fuzz
def check_keywords_with_keywords(keywords, paper_keywords, threshold):
if not paper_keywords:
return None, False
# Ensure paper_keywords is a list
if not isinstance(paper_keywords, list):
if isinstance(paper_keywords, str):
paper_keywords = [paper_keywords]
else:
try:
paper_keywords = list(paper_keywords)
except:
paper_keywords = [str(paper_keywords)]
for keyword in keywords:
if keyword is None:
continue
# Ensure keyword is a string
keyword = str(keyword)
if not keyword.strip():
continue
for paper_keyword in paper_keywords:
if paper_keyword is None:
continue
# Ensure paper_keyword is a string
paper_keyword = str(paper_keyword)
if not paper_keyword.strip():
continue
try:
if fuzz.ratio(keyword, paper_keyword) >= threshold:
return keyword, True
except Exception as e:
print(f"Error comparing '{keyword}' with '{paper_keyword}': {e}")
continue
return None, False
def check_keywords_with_text(keywords, text, threshold):
if text is None:
return None, False
# Ensure text is a string
text = str(text)
for keyword in keywords:
if keyword is None:
continue
# Ensure keyword is a string
keyword = str(keyword)
# Skip empty strings
if not keyword.strip() or not text.strip():
continue
try:
if fuzz.partial_ratio(keyword, text) >= threshold:
return keyword, True
except Exception as e:
print(f"Error comparing '{keyword}' with text: {e}")
continue
return None, False
def satisfies_any_filters(paper, keywords, filters):
for filter_, args, kwargs in filters:
matched_keyword, matched = filter_(paper, keywords=keywords, *args, **kwargs)
if matched:
filter_type = filter_.__name__
return matched_keyword, filter_type, True
return None, None, False
def keywords_filter(paper, keywords, threshold=85):
paper_keywords = paper.content.get('keywords')
if paper_keywords is not None:
return check_keywords_with_keywords(keywords, paper_keywords, threshold)
return None, False
def title_filter(paper, keywords, threshold=85):
paper_title = paper.content.get('title')
if paper_title is not None:
return check_keywords_with_text(keywords, paper_title, threshold)
return None, False
def abstract_filter(paper, keywords, threshold=85):
paper_abstract = paper.content.get('abstract')
if paper_abstract is not None:
return check_keywords_with_text(keywords, paper_abstract, threshold)
return None, False