How Context Improves Text-to-ASL Gloss Translation

Peter Bubenik Β· Apple ML Β· Β· Source
Image for DiscoSign: Discourse-Aware Text to Sign Language Gloss Translation

Step-by-Step Teaching

Step 1: The Core Problem β€” Why Sentence-Level Translation Fails

Imagine reading a book where every sentence is translated in isolation, with no memory of what came before.

Example in English:

"John walked in. He sat down. He looked tired."

A sentence-level system would not know who "He" refers to each time. It loses context.

Sign languages have this problem even more critically because:

  • Signs use physical space to represent people and objects
  • Grammar is expressed through body, face, and spatial positioning
  • Meaning depends heavily on what was established earlier in conversation

βœ… Key Insight: Sign language is a discourse-level language β€” meaning is built across sentences, not just within them.


Step 2: What Is "Gloss Translation"?

Before going further, understand this term:

TermMeaning
Sign LanguageA full visual-spatial language (e.g., ASL)
GlossA written word-by-word representation of signs (e.g., MAN WALK STORE)
Text-to-Gloss TranslationConverting English text β†’ ASL gloss notation

Why gloss? It is an intermediate step before generating actual signed video. Getting the gloss right is foundational.


Step 3: The Three Discourse Phenomena DiscoSign Addresses

πŸ”΅ Phenomenon 1: Spatial Coreference Resolution

What it means: In ASL, when you introduce a person or object, you assign them a location in space (left, right, center). Every future reference to that entity must use the same spatial location.

Example:

  • Introduce "DOCTOR" β†’ assign to left space
  • Later reference to doctor must consistently use left space
  • If a system forgets this, the translation becomes incoherent

DiscoSign's role: Track entities and maintain their spatial assignments across the entire discourse


🟑 Phenomenon 2: Question-Answer Clauses (QACs)

What it means: ASL uses a specific grammatical structure called a pseudocleft or Question-Answer Clause to emphasize information.

English equivalent concept:

"What I want is coffee" (instead of just "I want coffee")

In ASL, this structure serves specific discourse functions β€” it signals focus, contrast, or topic introduction.

DiscoSign's role: Detect when QAC structures are appropriate and generate them correctly, rather than defaulting to simple sentence structures.


🟒 Phenomenon 3: Concept-Gloss Consistency

What it means: The same English concept should always map to the same ASL sign/gloss throughout a document.

Problem without this:

  • "Doctor" β†’ DOCTOR (sentence 1)
  • "Doctor" β†’ PHYSICIAN (sentence 5)

This inconsistency confuses Deaf readers, just like randomly switching synonyms confuses hearing readers.

DiscoSign's role: Maintain a stable mapping between English words and ASL glosses throughout the entire text.


Step 4: The Technical Framework β€” How DiscoSign Works

English Text (full discourse)
         ↓
   Modular LLM Framework
   β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
   β”‚  Module 1: Coreference      β”‚ β†’ Tracks spatial assignments
   β”‚  Module 2: QAC Detection    β”‚ β†’ Identifies discourse structures  
   β”‚  Module 3: Gloss Mapping    β”‚ β†’ Ensures consistent vocabulary
   β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
         ↓
   ASL Gloss Translation
   (discourse-coherent output)

Why modular? Each discourse phenomenon is complex. A modular design means:

  • Each problem is handled separately and specifically
  • Modules can be improved independently
  • The system is interpretable β€” you can see which module did what

Why LLM-based? Large Language Models have strong language understanding capabilities, making them suitable for:

  • Understanding context across long passages
  • Generating linguistically appropriate structures
  • Flexible adaptation to discourse rules

Step 5: Why Traditional Metrics Fail β€” And What DiscoSign Introduces

❌ Traditional Metrics (e.g., BLEU score)

These measure word overlap between generated and reference translations.

Problem: They evaluate one sentence at a time. They cannot detect:

  • Whether spatial assignments are consistent across sentences
  • Whether QAC structures are used appropriately
  • Whether the same concept gets different glosses

Analogy: Grading each paragraph of an essay separately without checking if the argument is coherent overall.

βœ… DiscoSign's Novel Evaluation Metrics

DiscoSign introduces metrics that specifically measure:

Metric DimensionWhat It Checks
Spatial ConsistencyAre entity locations maintained throughout?
QAC AccuracyAre question-answer structures used correctly?
Concept-Gloss StabilityIs the same English word always the same gloss?

Step 6: Results and Significance

What the experiments showed:

AspectResult
Spatial consistencySignificantly improved vs. sentence-only translation
Entity trackingSignificantly improved
Single-sentence qualityMaintained competitive performance (no regression)

βœ… DiscoSign improves discourse-level quality without sacrificing sentence-level quality.

Why this matters:

  • This is the first systematic framework for discourse-level text-to-sign gloss translation
  • It directly benefits the Deaf and Hard-of-Hearing (DHH) community
  • It establishes a methodology others can build upon

Step 7: Connecting to the Broader Research Context

DiscoSign is part of a larger research direction:

DiscoSign (this paper)
    β†’ Better gloss translation at discourse level

Bootstrapping Sign Language Annotations (2026)
    β†’ Solving the data scarcity problem with pseudo-annotation

Non-Manual Markers Research (2025)
    β†’ Adding facial expressions and body language to generation

Big Picture: The field is moving from simple sentence translation β†’ full, natural, discourse-aware sign language generation that truly serves the DHH community.


Summary Recap

ConceptKey Takeaway
ProblemSentence-level translation misses discourse coherence
SolutionDiscoSign: modular LLM framework for discourse-aware translation
Phenomenon 1Spatial coreference β€” consistent entity locations in space
Phenomenon 2QACs β€” pseudocleft structures for discourse functions
Phenomenon 3Concept-gloss consistency β€” stable vocabulary mapping
EvaluationNew metrics needed because BLEU-style metrics are insufficient
ResultFirst systematic discourse-level sign language translation framework

More to study