data_juicer.ops.mapper.clean_html_mapper 源代码
# Some code here has been modified from:
# https://github.com/togethercomputer/RedPajama-Data/tree/rp_v1/
# --------------------------------------------------------
from data_juicer.utils.lazy_loader import LazyLoader
from ..base_op import OPERATORS, Mapper
selectolax = LazyLoader("selectolax")
OP_NAME = "clean_html_mapper"
[文档]
@OPERATORS.register_module(OP_NAME)
class CleanHtmlMapper(Mapper):
"""Cleans HTML code from text samples, converting HTML to plain text.
This operator processes text samples by removing HTML tags and converting HTML elements
to a more readable format. Specifically, it replaces `<li>` and `<ol>` tags with newline
and bullet points. The Selectolax HTML parser is used to extract the text content from
the HTML. This operation is performed in a batched manner, making it efficient for large
datasets."""
_batched_op = True
[文档]
def __init__(self, *args, **kwargs):
"""
Initialization method.
:param args: extra args
:param kwargs: extra args
"""
super().__init__(*args, **kwargs)
[文档]
def process_batched(self, samples):
def _clean_html(raw_html):
raw_html = raw_html.replace("<li>", "\n*")
raw_html = raw_html.replace("</li>", "")
raw_html = raw_html.replace("<ol>", "\n*")
raw_html = raw_html.replace("</ol>", "")
parser = selectolax.parser.HTMLParser(raw_html)
return parser.text()
samples[self.text_key] = [_clean_html(text) for text in samples[self.text_key]]
return samples