<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>graph-based search engine optimization &#8211; Science</title>
	<atom:link href="https://scienmag.com/tag/graph-based-search-engine-optimization/feed/" rel="self" type="application/rss+xml" />
	<link>https://scienmag.com</link>
	<description></description>
	<lastBuildDate>Sun, 13 Sep 2026 00:41:09 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.1</generator>

<image>
	<url>https://scienmag.com/wp-content/uploads/2024/07/cropped-scienmag_ico-32x32.jpg</url>
	<title>graph-based search engine optimization &#8211; Science</title>
	<link>https://scienmag.com</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">73899611</site>	<item>
		<title>New Algorithms Shrink Giant Knowledge Graphs While Keeping Their Meaning Intact</title>
		<link>https://scienmag.com/new-algorithms-shrink-giant-knowledge-graphs-while-keeping-their-meaning-intact/</link>
		
		<dc:creator><![CDATA[Denise Maddox]]></dc:creator>
		<pubDate>Sun, 13 Sep 2026 00:41:09 +0000</pubDate>
				<category><![CDATA[Technology and Engineering]]></category>
		<category><![CDATA[AI knowledge graph efficiency]]></category>
		<category><![CDATA[algorithms]]></category>
		<category><![CDATA[data mining]]></category>
		<category><![CDATA[data mining and knowledge discovery]]></category>
		<category><![CDATA[graph compression]]></category>
		<category><![CDATA[graph summarization]]></category>
		<category><![CDATA[graph-based search engine optimization]]></category>
		<category><![CDATA[information loss control in knowledge graphs]]></category>
		<category><![CDATA[Knowledge graph compression]]></category>
		<category><![CDATA[knowledge graph exploration challenges]]></category>
		<category><![CDATA[knowledge graphs]]></category>
		<category><![CDATA[large-scale knowledge network visualization]]></category>
		<category><![CDATA[lossy compression]]></category>
		<category><![CDATA[PageRank]]></category>
		<category><![CDATA[query optimization]]></category>
		<category><![CDATA[RDF graphs]]></category>
		<category><![CDATA[recommendation system data management]]></category>
		<category><![CDATA[scalable knowledge graph algorithms]]></category>
		<category><![CDATA[scientific database knowledge representation]]></category>
		<category><![CDATA[semantic cohesiveness]]></category>
		<category><![CDATA[semantic preservation in graph summarization]]></category>
		<category><![CDATA[structural preservation]]></category>
		<category><![CDATA[structural-semantic fidelity in graph algorithms]]></category>
		<category><![CDATA[utility metric]]></category>
		<guid isPermaLink="false">https://scienmag.com/?p=200132</guid>

					<description><![CDATA[Researchers in China have developed three new algorithms, LIDUS, LDUS and aLDUS, that compress massive knowledge graphs into compact summaries while giving users explicit control over structural and semantic information loss, cutting query times by an average of 97 percent.]]></description>
										<content:encoded><![CDATA[<p>Knowledge graphs have quietly become the connective tissue of modern artificial intelligence. Powering search engines, recommendation systems, virtual assistants and scientific databases, these vast networks of entities and relationships encode billions of facts about the world in machine-readable form. Yet their very scale has become a burden. When a graph swells to millions or billions of edges, even basic tasks such as exploration, query answering and visualization grind to a halt, and human analysts struggle to grasp what the data actually contains. A new study published in Data Mining and Knowledge Discovery by Yi Wang and Ying Wang of Southwest University in Chongqing, China, offers a fresh answer to this long-standing problem: a family of algorithms that compress knowledge graphs into compact summaries while giving users direct, quantifiable control over how much information is lost along the way.</p>
<p>The core of the work, titled Utility-driven knowledge graph summarization with structural-semantic fidelity, addresses a gap that has frustrated researchers for years. Existing summarization techniques have traditionally optimized for one of two goals at a time. Some methods focus on preserving the semantic content of a graph, ensuring that the meaning of facts and the cohesiveness of related concepts survive compression. Others prioritize structure, maintaining the topology of connections so that downstream graph algorithms behave predictably. The trouble, the authors argue, is that these approaches cannot directly control the trade-off between the two dimensions when operating in a lossy setting, where some information is deliberately discarded to achieve meaningful reductions in size. Worse, most lossy methods evaluate information loss only after the summary has been generated, a post-hoc assessment that offers no mechanism to steer the compression process while it is underway.</p>
<p>Wang and Wang&#8217;s solution begins with a dual-utility metric, a single mathematical yardstick that simultaneously measures structural preservation and semantic cohesiveness. Rather than judging a summary by how much it shrank or how closely it resembles the original in one narrow sense, the metric quantifies the utility of a summary across both dimensions at once. This allows the summarization process itself to become utility-driven: at every step, the algorithm knows exactly how much value it is sacrificing and can choose the action that minimizes that sacrifice. It is a shift from diagnosing damage after the fact to preventing it during construction, and it transforms summarization from an art of approximation into a controlled engineering process with explicit guarantees.</p>
<p>Three algorithms were developed to put this idea into practice, each targeting a different point on the spectrum of speed, fidelity and loss. The first, called LIDUS, performs lossless summarization. It compresses a graph without discarding any information, preserving both structural and semantic integrity completely. Lossless summaries are ideal when exactness matters, but they inevitably impose limits on how small the representation can become. The second algorithm, LDUS, embraces lossy compression with a utility-guided strategy. It iteratively merges pairs of entities that have been ranked by the system, and at each iteration it selects the merge that minimizes utility loss under the dual metric. The result is a summary that can be far smaller than any lossless counterpart, while the accumulated damage remains visible and bounded at every stage of the process.</p>
<p>The third algorithm, aLDUS, tackles the practical obstacle that threatens to undermine the entire approach: computational cost. Naively evaluating the utility loss of every candidate merge at every iteration is expensive, particularly on large graphs where the number of candidate pairs is enormous. aLDUS resolves this by incrementally computing semantic loss, updating loss figures as merges proceed rather than recalculating them from scratch, while guaranteeing a bounded utility loss throughout. In other words, the speedup does not come at the price of uncontrolled error; the algorithm carries a formal assurance that the quality of the summary stays within limits the user specifies. This combination of efficiency and provable fidelity is what distinguishes the method from earlier attempts at fast graph summarization.</p>
<p>To validate the framework, the researchers ran experiments on five real-world and synthetic knowledge graphs, testing how well summaries preserved the answers to meaningful analytical queries. A central benchmark was the top-10 percent PageRank query, computed on graphs reconstructed from aLDUS summaries. PageRank, the algorithm famously behind web search ranking, identifies the most influential nodes in a network, so reproducing its results from a compressed graph is a demanding test of whether summarization retains what matters. Across the five datasets, setting the utility threshold to 0.8 yielded an average accuracy of 0.89, meaning that summaries produced under this setting nearly matched the importance rankings of the full original graphs despite their reduced size.</p>
<p>The comparisons against competing methods were equally striking. Summaries generated by aLDUS achieved average cohesiveness ratios in the range of 0.93 to 1.21 when measured against rival approaches, indicating that the semantic fabric of the graph was held together at least as well, and often better, than what existing techniques deliver. On runtime, the model recorded the shortest summarization times across three of the five datasets and remained comparable to the fastest available methods on the remaining two. Compression that is both accurate and fast changes the practical calculus for organizations maintaining large knowledge infrastructure, because summaries can be refreshed frequently enough to stay current with evolving data rather than treated as static snapshots.</p>
<p>Query performance is where the benefits become most tangible for end users. In experiments covering both simple and complex queries, summaries produced by LDUS and aLDUS achieved an average F1 score of 0.88, a combined measure of precision and recall that indicates answers drawn from the compressed graphs closely matched answers from the originals. More dramatically, query times dropped by an average of 97 percent. For interactive applications such as knowledge graph exploration, keyword search and question answering, this means analysts can navigate enormous datasets at the responsiveness of a small one, without systematically distorting the answers they receive. The authors&#8217; experiments also demonstrate that the approach generalizes across diverse graph types rather than being tuned to a single benchmark.</p>
<p>The significance of the work extends beyond the immediate algorithms. Industry-scale knowledge graphs, as documented in prior surveys of the field, already contain billions of entities and are growing rapidly, and the research community has identified summarization, profiling and shape extraction as key technologies for taming them. By introducing a principled way to balance structural and semantic fidelity under explicit user control, Wang and Wang provide a foundation that other systems can build upon, from query optimizers that estimate result sizes using summaries to exploratory tools that offer first-sight views of unfamiliar datasets. The dual-utility framing also opens the door to future work in which different applications specify different utility profiles, tailoring the same underlying machinery to search, visualization, machine learning preprocessing or data validation.</p>
<p>For a field that has often treated compression quality as an afterthought to be measured once the dust settles, this study represents a conceptual step forward: loss becomes a dial that engineers can set, monitor and guarantee, rather than a surprise to be discovered afterward. As knowledge graphs continue to expand into domains ranging from biomedicine to e-commerce to national-scale digital infrastructure, tools like LIDUS, LDUS and aLDUS suggest a future in which the size of the data no longer dictates the limits of our understanding of it. The research, received in October 2025 and published on 29 August 2026, signals that the next generation of graph technologies will not simply be bigger, but smarter about what they choose to remember.</p>
<p><strong>Subject of Research:</strong> Utility-driven lossless and lossy summarization of knowledge graphs with dual structural and semantic fidelity guarantees</p>
<p><strong>Article Title:</strong> Utility-driven knowledge graph summarization with structural-semantic fidelity</p>
<p><strong>Article References:</strong> Utility-driven knowledge graph summarization with structural-semantic fidelity. (n.d.). <a href="https://doi.org/10.1007/s10618-026-01256-1" rel="noopener noreferrer">https://doi.org/10.1007/s10618-026-01256-1</a></p>
<p><strong>Image Credits:</strong> AI Generated</p>
<p><strong>DOI:</strong> <a href="https://doi.org/10.1007/s10618-026-01256-1" rel="noopener noreferrer">10.1007/s10618-026-01256-1</a></p>
<p><strong>Keywords:</strong> knowledge graphs, graph summarization, lossy compression, semantic cohesiveness, structural preservation, utility metric, PageRank, query optimization, data mining, algorithms, RDF graphs, graph compression</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">200132</post-id>	</item>
	</channel>
</rss>
