-
Notifications
You must be signed in to change notification settings - Fork 187
/
clean_links_mapper.py
58 lines (49 loc) · 2.14 KB
/
clean_links_mapper.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
# Some code here has been modified from:
# https://github.com/kallewesterling/CleanText/
# --------------------------------------------------------
from typing import Optional
import regex as re
from ..base_op import OPERATORS, Mapper
@OPERATORS.register_module('clean_links_mapper')
class CleanLinksMapper(Mapper):
"""Mapper to clean links like http/https/ftp in text samples."""
_batched_op = True
def __init__(self,
pattern: Optional[str] = None,
repl: str = '',
*args,
**kwargs):
"""
Initialization method.
:param pattern: regular expression pattern to search for within text.
:param repl: replacement string, default is empty string.
:param args: extra args
:param kwargs: extra args
"""
super().__init__(*args, **kwargs)
if pattern is None:
self.pattern = r'(?i)\b('
self.pattern += r'(?:[a-z][\w-]+:(?:\/{1,3}|'
self.pattern += r'[a-z0-9%])|www\d{0,3}[.]|'
self.pattern += r'[a-z0-9.\-]+[.][a-z]{2,4}\/)'
self.pattern += r'(?:[^\s()<>]+|\(([^\s()<>]+|'
self.pattern += r'(\([^\s()<>]+\)))*\))'
self.pattern += r'+(?:\(([^\s()<>]+|(\([^\s()<>]+\)))*\)|'
self.pattern += r'[^\s`!()\[\]{};:\'\".,<>?«»“”‘’])'
self.pattern += r')'
else:
self.pattern = pattern
if ((len(pattern) > 2) and
(pattern.startswith("r'") and pattern.endswith("'")
or pattern.startswith('r"') and pattern.endswith('"'))):
self.pattern = pattern[2:-1]
self.repl = repl
def process_batched(self, samples):
for idx, text in enumerate(samples[self.text_key]):
if not re.search(self.pattern, text, flags=re.DOTALL):
continue
samples[self.text_key][idx] = re.sub(pattern=self.pattern,
repl=self.repl,
string=text,
flags=re.DOTALL)
return samples