Papers
arxiv:2411.02959

HtmlRAG: HTML is Better Than Plain Text for Modeling Retrieved Knowledge in RAG Systems

Published on Nov 5
· Submitted by zstanjj on Nov 6
#1 Paper of the day
Authors:
,
,
,
,

Abstract

Retrieval-Augmented Generation (RAG) has been shown to improve knowledge capabilities and alleviate the hallucination problem of LLMs. The Web is a major source of external knowledge used in RAG systems, and many commercial systems such as ChatGPT and Perplexity have used Web search engines as their major retrieval systems. Typically, such RAG systems retrieve search results, download HTML sources of the results, and then extract plain texts from the HTML sources. Plain text documents or chunks are fed into the LLMs to augment the generation. However, much of the structural and semantic information inherent in HTML, such as headings and table structures, is lost during this plain-text-based RAG process. To alleviate this problem, we propose HtmlRAG, which uses HTML instead of plain text as the format of retrieved knowledge in RAG. We believe HTML is better than plain text in modeling knowledge in external documents, and most LLMs possess robust capacities to understand HTML. However, utilizing HTML presents new challenges. HTML contains additional content such as tags, JavaScript, and CSS specifications, which bring extra input tokens and noise to the RAG system. To address this issue, we propose HTML cleaning, compression, and pruning strategies, to shorten the HTML while minimizing the loss of information. Specifically, we design a two-step block-tree-based pruning method that prunes useless HTML blocks and keeps only the relevant part of the HTML. Experiments on six QA datasets confirm the superiority of using HTML in RAG systems.

Community

Paper author Paper submitter

HTML contains a lot of intrinsic information, so we propose taking HTML as the format of retrieved knowledge in RAG systems, and design HTML cleaning and block-tree-based HTML pruning to shorten the length and preserve information.

This is pretty much applying graph-rag to a processed html document (with extra steps) right?

·
Paper author

In fact, HtmlRAG has nothing to do with Graph RAG😂. The tree structure in HtmlRAG originates from the HTML format, while the graph in graph RAG is extrated from plain-text documents using an LLM. There is almost no intersection between them. I hope this explanation could solve your concern🤗.

I faced similar challange to extract HTML data from website, i used Markdown format and it works really well. but i will try this for sure.

·

Have you tried using markdown format with open source LLMs like llama-3.1-70b? In my experiments, it tends to perform really terrible with markdown format. So, I am hopeful this approach might be useful.

Pretty cool! I'll try it out.

Did you consider keeping the "context path" for the fine-grained blocks? See e.g. https://www.anthropic.com/news/contextual-retrieval for an elaborate version of this -- the first mention I remember was from 2022 or 2023 and simply added a document's title to the chunk prior to embedding, to great improvement in relevance. In your case you could add the document title and any parent heading/subheading elements prior to the chunk? See https://claude.site/artifacts/14ba4b9a-94da-4ea2-905c-ba300be872b5 for a visual

·
Paper author

Great suggestion👍! Actually, for each block, there are many additional features waiting to be explored, such as tag attributes, url links, and context path you have mentioned. We can probably optimize the block represention strategy in future works.

Paper author Paper submitter
This comment has been hidden

No mention in this article of Markdown? I always do my RAG training in Markdown.

·
Paper author

We compare HtmlRAG and rule-based HTML2Markdown converter markdownify in Table 2. In our experiment, for Llama chat model, Markdown format is not as good as plain text or HTML. If your chat model is specially fine-tuned with Markdown, you may apply our HTML cleaning and pruning algorithm, and convert the final pruned HTML to Markdown.

The best format for an LLM is very specific to llm itself right?
GPT* favors markdown, claude favors xml, ...

Also, did you also compare with contextual chunking as someone above also mentioned something similar?
i.e., say the format is markdown, and chunked semantically or section wise, or arbitrary chunking strategy, combined with adding proper context into the chunk: (using approach Anthropic says contextual retrieval)

·
Paper author

Thanks for your suggestion!

  • For your first concern, our claim for HTML is based on the knowledge source in RAG systems. We assume that as a component in the RAG system, the LLMs' favours can be adjusted by the data format in the instruction tuning stage. It would be a better practice if all components here are designed for the HTML knowledge source.

  • For your second concern, we compare HtmlRAG with chunking parctice in Langchain in our paper. We are talking about an RAG system whose knowledge source is basically in HTML format. Those fancy chunking strategies are based on the HTML-to-plain-text conversion. If information loss is mainly brought by the conversion other than the chunking strategy, different chunking strategies may have little difference.

I hope my explanation helps🤗.

Paper author Paper submitter
edited 4 days ago

An Overall Explanation for Table 2:

  1. [A complementary experiment] First, we evaluate the information loss during pruning by the reference text's exact match scores, which are shown as follows.
    Dataset Plain Text (128k) Markdown (128k) HtmlRAG w/o Prune (128k) BM25 (4k) BGE (4k) E5-Mistral (4k) LongLLMLingua (4k) JinaAI Reader (4k) HtmlRAG w/o Prune-Gen (8k) HtmlRAG (4k)
    ASQA 70.9 67.72 69.49 25.99 52.17 50.65 35.77 38.39 59.72 52.8
    Hotpot-QA 70.0 65.75 66.75 37.5 48.75 49.0 43.75 38.25 54.75 51.0

We list the score for reference text in some critical steps or baselines. Plain Text(128k), Markdown(128k), and HtmlRAG w/o Prune(128k) are long-context reference after rule-base cleaning (refer to Table 2 for end-to-end results). HTML's socre is lightly lower due to extra HTML tags occupying tokens. BM25 (4k), BGE (4k), E5-Mistral (4k), LongLLMLingua (4k), and JinaAI Reader (4k) are baselines (refer to Table 1 for end-to-end results). HtmlRAG (8k) is the coarsely pruned result using the embedding model and HtmlRAG (4k) is the final pruned result using both the embedding model and the generative model.
2. [Plain Text seems better?] You can first refer to the table above for information loss evaluation, which shows that under a limited context window, HTML format reference contains less documents and has lower exact match score due to extra HTML tags occupying tokens. Under such circumstances, HTML performs comparable or even better than plain text. This shows the positive effect of the rich structural information of HTML.
3. [8B seems better?] The experiments in Table 2 are carried out in a long-context setting, where lots of noise is brought by long references. We check some cases in which Llama-3.1-8B wins Llama-3.1-70B, and it seems Llama-3.1-70B gets distracted by those noise. We think this also demonstrates the necessity to do HTML pruning.
4. [Is HtmlRAG worthwile?] The HTML cleaning and pruning process is worthwhile as long as the knowledge source is in HTML format or in other rich formats like PDF. Currently, major RAG frameworks like LangChain and LlamaIndex share the following workflow: Retrieve HTML -> Convert to Plain Text -> Refine -> Generate Answer. We argue that the upper bound of the workflow above is limited because lots of information is lost during the early HTML to plain text conversion. Our proposed workflow goes like this: Retrieve HTML -> Clean and Prune -> Convert to Other Formats (Optional) -> Generate Answer. Even if the LLM prefers other input formats or you'd like to save tokens, the conversion from HTML to other formats is optional and suggested to be done after HTML cleaning and pruning. This workflow has a higher upper bound because pruning is carried out before the information loss of format conversion.

Sign up or log in to comment

Models citing this paper 4

Datasets citing this paper 2

Spaces citing this paper 0

No Space linking this paper

Cite arxiv.org/abs/2411.02959 in a Space README.md to link it from this page.

Collections including this paper 28