← Latest papers
💬 NLP

G^2C-MT: Graph-Guided Context Selection for Document-Level Machine Translation

The paper proposes G^2C-MT, a novel framework that models document-level machine translation context selection as a structured path discovery problem on a lightweight discourse graph using depth-biased random walks to effectively capture long-range dependencies and outperform existing baselines across various large language models.

Original authors: Baijun Ji, Zixuan Zhou, Xiangyu Duan, Yu Liu, Longbo Sun, Rupu Wei, Bohong Zhao

Published 2026-06-03
📖 5 min read🧠 Deep dive

Original authors: Baijun Ji, Zixuan Zhou, Xiangyu Duan, Yu Liu, Longbo Sun, Rupu Wei, Bohong Zhao

Original paper licensed under CC BY 4.0 (http://creativecommons.org/licenses/by/4.0/). This is an AI-generated explanation of the paper below. It is not written or endorsed by the authors. For technical accuracy, refer to the original paper. Read full disclaimer

Imagine you are trying to translate a long, complex novel from English to Chinese. If you only look at one sentence at a time, you might miss the bigger picture. For example, a character might be referred to as "he" in sentence 50, but you won't know who "he" is until you read sentence 5. Or, a specific technical term might be defined in the first chapter but used again in the last chapter. If you forget that definition, your translation will be wrong.

This is the problem G2C-MT (Graph-Guided Context for Machine Translation) tries to solve. It's a new way to help Artificial Intelligence (AI) translate entire documents, not just single sentences.

Here is how it works, broken down into simple concepts:

1. The Problem: The "Amnesia" and "Noise" Issues

Current AI translators often struggle with two things:

  • The Window Problem: Some translators only look at the last few sentences (like looking through a small window). If the answer to a question is 50 sentences back, they miss it.
  • The "Bag of Words" Problem: Other translators try to find any sentence that sounds similar to the current one. But this is like finding a sentence about "apple" because the current sentence is about "apple pie," even if the "apple" in the current sentence is actually a computer brand. They grab the wrong context, creating confusion.

2. The Solution: Building a "Map" of the Story

Instead of just looking at the last few sentences or grabbing random similar ones, G2C-MT builds a map (a graph) of the entire document before it starts translating.

Think of the document as a city, where every paragraph is a building.

  • The Roads (Edges): The system draws roads between buildings. But it doesn't just draw roads between neighbors (like building 1 and building 2). It also draws roads between buildings that share:
    • Similar Themes: (Semantic similarity)
    • Shared Keywords: (Like a specific name or technical term appearing in both)
    • Order: (Which building comes right after the other)

This creates a Discourse Graph. It's a lightweight map that shows not just who is next to whom, but who is connected to whom across the whole document.

3. The Journey: The "Depth-Biased Hiker"

Once the map is built, the AI needs to decide which past paragraphs to read before translating the current one.

Instead of just walking to the next door (like a standard window) or jumping to the most similar building (like a random search), G2C-MT uses a hiker with a special compass.

  • The Hiker's Goal: The hiker starts at the current building and walks backward through the map to find the most helpful history.
  • The Compass (Depth Bias): The hiker is biased to walk deeper into the past. If a building has a long chain of connections leading back to the beginning of the story, the hiker is more likely to follow that path. This ensures the AI finds the "root" of a story or a definition, even if it's far away.
  • The Path: The hiker traces a single, logical path of connected paragraphs. This path becomes the "context" the AI uses to translate the current sentence.

4. The Safety Net: Trying Multiple Paths

Sometimes, a story is ambiguous. There might be two different logical ways to connect the dots.

  • G2C-MT doesn't just take one path. It sends out multiple hikers at the same time, each taking a slightly different route through the map.
  • Each hiker brings back a different translation suggestion.
  • The system then looks at all the suggestions and picks the one that makes the most sense (the "majority vote" or the most consistent one). This makes the translation more robust and less likely to make a silly mistake.

5. Why It's Better (The Results)

The authors tested this on two types of documents:

  1. Technical Manuals (SAP): These are dry, step-by-step instructions where terms must be consistent.
  2. Narrative Stories (TED Talks): These have loose structures and long-range themes.

The Findings:

  • Better Accuracy: G2C-MT consistently beat other methods. It translated technical terms correctly because it could "remember" the definition from 10 paragraphs ago.
  • Better Flow: It kept the story coherent because it followed the logical path of the text, not just random similar words.
  • Efficiency: Unlike other methods that require the AI to "think" about the whole document structure using expensive, slow processes, G2C-MT builds its map quickly using simple math (like counting keywords and measuring similarity) and then walks the map. It's fast and doesn't waste computer power.

Summary Analogy

Imagine you are translating a mystery novel.

  • Old Way (Window): You only read the last 3 pages. You miss the clue from page 1.
  • Old Way (Random Search): You search for the word "murder" and find a page from a completely different book that also mentions "murder," confusing your translation.
  • G2C-MT: You have a smart detective who draws a map of the whole book. When you get to a confusing clue, the detective walks backward along the map, following the specific trail of clues that leads back to the beginning, finds the original definition, and tells you exactly what it means. If the trail is tricky, the detective sends out a team to check a few different routes and picks the one that solves the mystery best.

This paper claims that this "map-based" approach helps AI translate long documents with much higher quality and consistency than previous methods.

Drowning in papers in your field?

Get daily digests of the most novel papers matching your research keywords — with technical summaries, in your language.

Try Digest →