---
title: Landmark-Guided Knowledge (LGK)
url: https://www.emergentmind.com/topics/landmark-guided-knowledge-lgk
type: topic
---

# Landmark-Guided Knowledge (LGK)

Landmark-Guided Knowledge (LGK) denotes a family of methods in which landmarks serve as explicit carriers of prior structure for learning, inference, retrieval, generation, or control. In the cited literature, a landmark may be an input–output information granule, a facial keypoint, a noun-phrase landmark in an instruction, a room centroid paired with a room type, a cultural place name, or a planning fact or action that must occur in every valid plan. The common design choice is to augment purely data-driven processing with landmark-conditioned knowledge and then inject that knowledge through regularization, channel concatenation, cross-attention, hierarchical subgoal selection, or heuristic filtering [2604.00256][2509.25655][1904.11739].

## 1. Conceptual scope

The literature applies the LGK label to multiple, non-identical constructions. In "Informed Machine Learning with Knowledge Landmarks," landmarks are a finite collection of input–output information granules,
$$
\mathsf{K}=\{(A_i,B_i)\}_{i=1}^{c},
$$
where $A_i$ is a fuzzy set in the input space and $B_i$ is the corresponding fuzzy granule in the output space; each pair summarizes that outputs for inputs in region $A_i$ lie approximately in the fuzzy range $B_i$ [2604.00256]. In planning-based goal recognition, a landmark is a fact or action that must occur on every valid plan achieving a goal, often with a partial order $l_i\prec l_j$ [1904.11739]. In vision systems, landmarks are frequently geometric keypoints or their heatmaps; in embodied navigation they are instruction entities, room-level spatial anchors, or retrieved commonsense correlates [1609.09642][2509.25655][2109.09512].

| Setting | Landmark form | Operational role |
|---|---|---|
| KD-ML | $(A_i,B_i)$ fuzzy granules | granular regularizer |
| VLN / ObjectNav | noun phrases, room centers, co-occurrences | guidance for retrieval or subgoal choice |
| Vision / inpainting | 68 facial keypoints or heatmaps | pose or structure prior |
| Planning | unavoidable facts or actions | goal-recognition heuristic and filtering |

A common misconception is that LGK always refers to geographic or architectural landmarks. The cited work shows a broader usage: landmarks can be geometric, symbolic, linguistic, granular, or topological, provided that they encode compact, semantically meaningful constraints [1911.11394][2405.18721].

## 2. Landmark representations and encodings

LGK systems differ most sharply in how they encode landmarks. In the facial part segmentation cascade of Jackson et al., each of 68 detected keypoints is converted into a single-channel heatmap defined as a 2D Gaussian centered at the landmark location; these 68 heatmaps are stacked with the RGB image so that the segmentation FCN receives 71 input channels [1609.09642]. In LaFIn, a masked face is first mapped to 68 predicted landmarks, those points are rasterized into a single-channel structural map, and the map is concatenated with the masked RGB image to form a 4-channel input volume for the inpainting generator [1911.11394].

Language-grounded LGK adopts embedding-based encodings. The VLN method explicitly called LGK constructs a knowledge base of $630{,}000$ canonical language descriptions, stores a parallel noun-only list of $630{,}000$ entries, and precomputes CLIP-text embeddings for those noun entries; each panoramic view is split into $5$ sub-regions, which are encoded by CLIP’s image encoder for cosine-similarity retrieval [2509.25655]. MARKY-mT5 instead detects up to three landmark boxes per panorama, converts each detected box back into a perspective patch, embeds it with MURAL-large, and interleaves the resulting landmark embeddings with action tokens before generation [2111.12872].

Other representations are more symbolic or semantically typed. HLPO represents landmarks as
$$
\mathcal{G}=\{(g_i,c_i)\}_{i=1}^{M},
$$
where $g_i\in\mathbb{R}^2$ is the room-center coordinate and $c_i$ its room type; only room centroids and room categories are stored, not obstacle maps or object placements [2109.09512]. LLandMark’s Landmark Knowledge Agent uses a curated Vietnamese Cultural Landmarks knowledge base, replacing a landmark name with a textual description of its distinctive visual attributes, such as “twin square bell towers, dark gray stone, Gothic architecture, neo-Gothic façade” for St. Joseph’s Cathedral [2603.02888].

## 3. Granular, symbolic, and optimization-based formulations

The most explicit optimization-centric LGK formulation appears in KD-ML. A numeric model $M(\mathbf{x};\mathbf{a})$ is trained with the augmented loss
$$
L(\mathbf{a};\lambda)=\lambda\,L_{\mathrm{data}}(\mathbf{a})+(1-\lambda)\,L_{\mathrm{knowledge}}(\mathbf{a}),\qquad \lambda\in[0,1].
$$
The data term is computed on a local training set, while the knowledge term is a granular regularizer evaluated on points sampled over the full domain. For each sampled point and each landmark, the model computes a fuzzy consistency score $V_i(\mathbf{x};\mathbf{a})$ and penalizes the squared deviation $\bigl[1-V_i(\mathbf{x};\mathbf{a})\bigr]^2$ weighted by the input-granule activation $A_i(\mathbf{x})$. Because both $A_i$ and $B_i$ are smooth membership functions, the knowledge loss is differentiable and back-propagates gradients that push the model to remain inside the fuzzy output envelope whenever the input falls under the corresponding input granule [2604.00256].

Planning-based LGK is structurally different but similarly explicit. After extracting ordered fact landmarks from a relaxed planning graph, the system monitors an observation sequence and computes progress toward each candidate goal using the goal-completion heuristic
$$
h_{gc}(G,O)=\frac{1}{m}\sum_{i=1}^{m}\frac{|\mathcal{AL}_{g_i}|}{|\mathcal{L}_{g_i}|},
$$
where $\mathcal{L}_{g_i}$ denotes the landmarks relevant to sub-goal $g_i$ and $\mathcal{AL}_{g_i}$ the achieved subset. A second heuristic, $h_{uniq}$, weights landmarks by their inverse frequency across candidate goals, with
$$
w(l)=\frac{1}{\#\{G\in\mathcal{G}\mid l\in\mathcal{L}_G\}}.
$$
The same landmark structure is also used for filtering via strictly activating, unstable activating, and strictly terminal facts before invoking more expensive recognition machinery [1904.11739].

These formulations show that LGK is not restricted to attention-based neural architectures. It also includes explicit regularization of differentiable models and symbolic reasoning over necessary conditions.

## 4. Navigation and embodied intelligence

In vision-and-language navigation, LGK has been formulated as an external-knowledge pipeline. The 2025 LGK method first retrieves top-$K$ knowledge sentences by CLIP matching between subviews and the $630$K-entry knowledge base, then applies Knowledge-Guided by Landmark (KGL), in which retrieved knowledge entries cross-attend to noun-phrase landmarks extracted from the instruction, and finally performs Knowledge-Guided Dynamic Augmentation (KGDA) to fuse instruction, knowledge, vision, and historical information. Local and global branches are combined through a learned scalar gate,
$$
A_t=\alpha\,G_g+(1-\alpha)\,G_l.
$$
On R2R Test-Unseen it reports Navigation Error $3.09\,\mathrm{m}$, Success Rate $74\%$, Oracle SR $81\%$, and SPL $64\%$; on REVERIE Test-Unseen it reports OSR $62.96\%$, SR $57.68\%$, SPL $40.63\%$, RGS $35.28\%$, and RGSPL $24.91\%$ [2509.25655].

CONSOLE frames VLN as open-world sequential landmark discovery. It uses ChatGPT to extract ordered landmarks and generate landmark co-occurrence commonsense, CLIP to score candidate views, a learnable co-occurrence scoring module to correct noisy priors, and an observation enhancement strategy that fuses corrected landmark features with visual features before action prediction. Relative to a DUET baseline on R2R Test-Unseen, the reported gain is SR $+3$ points $(69\rightarrow72)$ and SPL $+2$ points $(59\rightarrow61)$; ablations show that removing learnable scoring or observation enhancement reduces SPL by $1$–$2$ points [2405.18721].

HLPO brings LGK into ObjectNav through hierarchical reinforcement learning. The global policy selects room landmarks from $\mathcal{G}$ using current GPS, goal category, and precomputed $P(\text{object}\mid\text{room-type})$, while three low-level PPO skills—PointNav, Explore, and GoalReacher—execute navigation, room-wise exploration, and final approach. On 100 held-out Matterport3D test episodes, the reported performance is Success $0.75$ and SPL $\approx0.38$ for HLPO, compared with Success $0.46$ and SPL $\approx0.33$ for a two-skill RL baseline without landmarks, and Success $0.90$ and SPL $\approx0.54$ for HLPO(Map) with a perfect obstacle map [2109.09512].

MARKY-mT5 addresses the inverse problem: generating grounded navigation instructions. It bootstraps approximately $971\mathrm{k}$ grounded landmark annotations in English, Hindi, and Telugu, then conditions instruction generation on detected landmark patches rather than full panoramic features. On R2R Val-Unseen, human wayfinders achieve SR $70.8\%$, NE $2.9\,\mathrm{m}$, and SPL $59.8\%$ when following MARKY-mT5 with predicted landmarks, versus SR $74.9\%$, NE $2.8\,\mathrm{m}$, and SPL $66.4\%$ for human-written instructions; on RxR Val-Unseen, predicted landmarks give SR approximately $61.5\%$ and silver landmarks approximately $63.3\%$ [2111.12872].

## 5. Perception, generation, and retrieval

LGK is also used as a structural prior in dense prediction. Jackson et al. implement a two-stage cascade in which a VGG-16 FCN-8s first predicts 68 landmark heatmaps and a second FCN-8s performs part segmentation conditioned on those heatmaps. The guided network outputs seven semantic-part score maps: background, skin, eyebrows, eyes, nose, upper lip/inner mouth, and lower lip. Mean IoU improves from approximately $0.68$ for the unguided FCN-8 to approximately $0.82$ for the full cascade guided by detected landmarks, with an upper bound of approximately $0.84$ when guided by ground-truth landmarks; the paper summarizes this as an approximately $14$ percentage-point absolute gain over the unguided baseline [1609.09642].

LaFIn uses landmarks to separate structure from appearance in face inpainting. A landmark-prediction subnet first regresses 68 facial landmarks from the masked image using
$$
L_{\rm lmk}=\|\hat L-L_{gt}\|_2^2,
$$
and an inpainting subnet then conditions on the rasterized landmark map with pixel, perceptual, style, total variation, and adversarial losses. On CelebA-HQ with a center mask, the reported quantitative highlights are PSNR $25.92\,\mathrm{dB}$, SSIM $0.905$, and FID $6.63$, compared with $24.82/0.874/8.26$ for EdgeConnect and $24.22/0.870/4.98$ for ContextAttn/PIC as listed in the summary [1911.11394].

LLandMark extends landmark guidance to multimodal video retrieval. Its Landmark Knowledge Agent detects landmark names, reformulates them into descriptive visual prompts, and passes the enriched semantic query to a CLIP-based retriever; additional modules cover OCR/ASR retrieval, object filtering, an LLM-assisted image-to-image branch, and score fusion. In the HCMAIC 2025 qualifier round, the reported overall score is $77.40/88.00$, ranking top $56/680+$ teams, with round scores of $20.00/23.00$, $28.20/30.00$, and $29.20/35.00$ [2603.02888].

Taken together, these systems show that landmark guidance can serve as a pose prior, a geometric scaffold, or a semantic bridge from entity names to visual appearance.

## 6. Empirical profile, misconceptions, and open directions

Several recurring empirical patterns appear across the literature. In KD-ML, the optimal trade-off parameter $\lambda^*$ decreases as the local-data noise level $\alpha$ grows, and increases as landmark granules become broader under the ratio $r\in[0,1]$; on two physics-governed benchmarks, the KD model reduces total error $Q_1+Q_2$ by $15.1\%$ in the environmental pollutant dispersion setting and by up to $61.7\%$ in the piston cycle-time setting, with consistent gains across multiple local windows [2604.00256]. In guided segmentation, training-time corruption of landmark locations is critical because a model trained only on perfect heatmaps degrades when fed real detections at test time [1609.09642]. In grounded instruction generation, silver landmarks outperform predicted landmarks and are treated as an upper bound, indicating that improved detection could further close the gap to human instructions [2111.12872].

The same dependence on landmark quality appears in other domains. LaFIn explicitly notes that if the landmark predictor is very poor under extreme occlusions, structure may still degrade [1911.11394]. CONSOLE notes that ChatGPT-based prior generation is time-consuming and expensive, and that priors may be noisy in highly specialized scenes [2405.18721]. In planning, exact extraction of all landmarks and their orderings is PSPACE-complete, and very low observability can leave too few landmarks visible for strong recognition performance [1904.11739].

A second misconception is that LGK is inherently tied to a single architectural template. The evidence instead spans additive regularization, symbolic heuristics, heatmap conditioning, retrieval augmentation, hierarchical RL, and multimodal generation. This suggests that LGK is better understood as a design pattern than as a fixed model class: isolate semantically salient or unavoidable structure, represent it explicitly, and use it to constrain or guide downstream computation. A plausible implication is that future work will focus less on inventing new landmark labels and more on calibrating landmark confidence, handling noisy or partial landmarks, and composing multiple landmark sources within unified systems.

Source: https://www.emergentmind.com/topics/landmark-guided-knowledge-lgk