REVIEW 6 major objections 8 minor 9 cited by
NavAgent: Multi-scale Urban Street View Fusion For UAV Embodied Vision-and-Language Navigation
T0 review · 6 major / 8 minor · reviewed 2026-08-12 · deepseek-v4-flash
Pith's one-line read The paper claims that fusing a growing street topology map, panorama views, and fine-grained landmark detections lets a large vision-language model navigate urban UAVs better than prior VLN systems on Touchdown and Map2seq.
desk verdict Solid street-level outdoor VLN engineering with a new dataset, but the UAV claim is not backed by the experiments. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing machinery is a multi-scale fusion pipeline with four modules. A text extractor for landmark uses GPT-4 with hand-designed prompts to pull landmark phrases out of the navigation instruction. A visual recognizer for landmark takes a GLIP detector, adds repeated cross-attention between region features and text features with DyHead and BERT fusion layers, and is fine-tuned on NavAgent-Landmark2K so it can match fine-grained landmarks; a verbalizer converts scores above a threshold into natural-language observations. A dynamically growing scene topology map stores visited, current, and contiguous nodes, encodes them with two stacked graph convolutional layers and global pooling, and fuses the resulting node features with the current panoramic image via cross-attention to produce topological map features. An MLP projection adapter maps those features into the LLM's embedding space, and the LLaMa2-13b language model integrates the instruction, the verbalized local landmark evidence, and the global map evidence to output the next navigation action.
What would settle it
A reader could take the Touchdown development panoramas, manually label every object named by the navigation instructions, and measure the fine-tuned landmark recognizer's recall on those images outside NavAgent-Landmark2K's own validation split; if its recall barely exceeds the unfine-tuned GLIP, the 9.5% dataset gain does not transfer to the navigation environment, and the navigation uplift would have to come from the map module alone.
Extended reading notes
Core claim
On its own terms, NavAgent's discovery is that outdoor urban VLN becomes tractable when local landmark grounding and global spatial memory are made explicit and both are expressed in language. The model uses GPT-4 to extract landmark phrases from the instruction, a GLIP-based visual recognizer fine-tuned on NavAgent-Landmark2K to detect those landmarks in left/front/right panorama crops and score them, and a verbalizer that turns high-scoring detections into sentences like 'There is [landmark] on your [direction]'. In parallel, a scene topology map records visited, current, and contiguous nodes; a two-layer graph convolutional network with normalized adjacency aggregation encodes node features, which are cross-attended with the current panoramic image and projected into the LLM embedding space. LLaMa2-13b then reads the instruction, the verbalized landmark observations, and the projected map features to emit the next action. The paper reports that this combination beats strong baselines on Touchdown and Map2seq, with the development-set task-completion rates rising from 26.0 to 27.2 on Touchdown and from 45.3 to 46.4 on Map2seq relative to VELMA.
Load-bearing premise
The reported navigation gains assume the 2,000-image NavAgent-Landmark2K dataset teaches the visual recognizer to detect small, multi-word landmarks in the Touchdown and Map2seq street panoramas; if those detections do not transfer across city views, the landmark module adds little.
Editorial extensions
If this is right
- Urban outdoor VLN can be decomposed into a landmark-grounding module and an LLM planner, so improvements in either component translate directly into navigation gains without retraining the whole pipeline.
- A relatively small fine-grained landmark dataset of 2,000 image-text pairs is enough to improve a general-purpose detector's phrase-level landmark accuracy by 9.5%, suggesting that collecting such data is an efficient route to better outdoor VLN.
- Including a topological map with visited and contiguous nodes gives the agent a memory that single-frame VLMs lack, which improves long-horizon decisions and lowers failures at landmark nodes.
- On the Touchdown and Map2seq benchmarks, NavAgent reports better task completion, shorter stop-to-goal distance, and higher key-point accuracy than prior baselines, including the verbalization-based VELMA.
- The modular architecture leaves the instruction-to-landmark extractor, landmark recognizer, map encoder, and LLM swappable, so future stronger VLMs or detectors can be plugged in without redesign.
Reading between the lines
- Editorial inference: because the landmark recognizer is the only component trained on city-specific street-view data, a new city could likely be handled by collecting a few hundred image-text pairs rather than retraining the LLM policy.
- Editorial inference: the map encoder's memory of visited nodes should matter most for instructions that require remembering past locations, such as 'turn right after the second traffic light'; the paper does not break down performance by instruction type.
- Editorial inference: the same verbalizer-plus-map pattern could transfer to indoor or ground-vehicle navigation where landmarks are also small and instructions are phrase-level, which would be a natural test of generality the paper does not run.
- Editorial inference: the paper's 'first urban UAV VLN' claim is contingent on treating Touchdown and Map2seq as UAV proxies; a real-drone deployment under moving traffic is an open test that the paper lists as future work.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes NavAgent, an outdoor vision-and-language navigation (VLN) model that fuses multi-scale information: a GLIP-based visual recognizer for fine-grained landmarks (with a new 2,000-pair landmark dataset, NavAgent-Landmark2K), a dynamically growing scene topology map encoded with graph convolutional networks, and a frozen LLM (LLaMa2-13B) that makes action decisions from verbalized local landmarks and global topology features. The model is evaluated on the Touchdown and Map2seq street-level navigation benchmarks, where it reports improvements over prior baselines, most notably VELMA, with ablations and qualitative examples.
Significance. If the empirical claims hold, the multi-scale fusion of verbalized landmarks and a growing topology map with an LLM planner is a useful and reasonably simple recipe for outdoor VLN, and the NavAgent-Landmark2K dataset could be a resource for fine-grained landmark recognition. Strengths of the paper include the use of public benchmarks (so the navigation results are not circular), a component-level evaluation of the landmark recognizer, ablation studies, and comparisons with strong baselines including VLM and LLM baselines. The main weakness is that the headline contribution—'the first urban UAV embodied navigation model'—is not supported by the experimental setup, which is entirely ground-level street-view navigation; as a street-level outdoor VLN method the contribution is credible, but as a UAV method it is untested. The other concerns (numerical inconsistencies, threshold selection, under-specified loss) are correctable but currently limit the reliability of the quantitative claims.
major comments (6)
- [Title, Abstract, Sec. I Contribution (1), Sec. III-A, Sec. IV-D] The central claim that NavAgent is the first urban UAV embodied navigation model is not supported by the experiments. All navigation evaluations are on the Touchdown and Map2seq benchmarks, which are ground-level Google Street View panoramas in Manhattan (Sec. III-A). The perception module splits a panorama into left/front/right 60-degree views (Sec. IV-D), the action space is {FORWARD, LEFT, RIGHT, STOP} on a ground-level directed graph, and no UAV-specific benchmark such as AerialVLN [1] is used as a testbed or a baseline. The architecture might transfer to aerial views, but that is conjectural. Please either add aerial-domain experiments or reframe the claims to 'outdoor street-level VLN' and state the aerial extension as future work. Because this is the paper's headline contribution, the claim must be aligned with the evidence.
- [Table II vs. Table IV; Sec. V.D; Abstract] The main quantitative result contains internal inconsistencies. Table II reports NavAgent Touchdown development-set TC=27.2 and Map2seq development-set TC=46.4, while Table IV reports NavAgent Touchdown TC=27.8 for what appears to be the same development setting. The claimed gains over VELMA are also inconsistent: the abstract states improvements of 4.6% and 2.2% on the development sets, but Sec. V.D states 4.6%/2.2% for Touchdown dev/test and 2.4%/0.8% for Map2seq dev/test. The abstract's 2.2% does not match the Table II Map2seq dev values (46.4/45.3−1 = 2.4%). Please report exact TC values in both tables and state explicitly whether the reported improvements are absolute percentage points or relative percentages.
- [Sec. V.D, Fig. 11, Table II] The verbalizer threshold τ is selected by evaluating KPA on the development sets of Touchdown and Map2seq (Fig. 11), and the same development sets are used for the headline results in Table II. This creates a selection-on-the-test-distribution risk: the reported development-set TC may be inflated by choosing τ that optimizes KPA on exactly those examples. Please fix τ using a properly held-out validation split, or report development- and test-set results for all τ values considered so the sensitivity of the main comparison is transparent.
- [Sec. IV.G, Eqs. (15)–(16)] The topological map loss is under-specified. In Loss_T = ||AS − AC||^2, AS and AC are not defined (presumably adjacency matrices of a predicted and a ground-truth topology), the ground-truth topology C is not introduced in the task formulation, and the norm is not specified. Since λ1 Loss_T is a component of the total training loss, the model cannot be reproduced without these definitions. Additionally, Eq. (12) reuses the symbol W1 from Eq. (11) although the matrix dimensions differ in H1 W1; please clarify the parameterization of the two GCN layers.
- [Sec. V.C, Fig. 8] The reported 9.5% recognition accuracy improvement of the fine-tuned GLIP is measured on the NavAgent-Landmark2K validation set, which is drawn from the same distribution as the fine-tuning data. This is not independent evidence that the recognizer transfers to the Touchdown/Map2seq environments, where landmarks occupy less than 5% of pixels and appear in different streets and viewpoints. The navigation gains in Table II provide indirect evidence, but the component claim would be materially strengthened by evaluating the fine-tuned recognizer on held-out landmark labels from the Touchdown/Map2seq environments or at least by reporting per-category and per-dataset transfer results.
- [Sec. V, Table II] No error bars, multiple runs, or significance tests are reported. The TC advantage over VELMA is 1–2 percentage points in several settings (e.g., Touchdown test TC 27.0 vs. 26.4), and the LLM component (LLaMa2-13B) may introduce stochasticity. Without variance estimates, it is difficult to know whether the gains are within run-to-run noise. Please add standard deviations over at least three runs with fixed seeds, or otherwise demonstrate determinism of the inference pipeline.
minor comments (8)
- [Sec. IV.C] The text extractor for landmark section says 'We design 10 cue prompts,' but no prompt templates or examples are provided; the zero-shot extraction result is therefore not reproducible.
- [Sec. V.B] The landmark phrase extraction evaluation uses only 50 navigation texts per dataset; the small sample size should be acknowledged, and the term 'each bigram model' in the text should be 'each LLM'.
- [Fig. 8] The y-axis of Fig. 8 is labeled 'accuracy' but the metric is not defined; please specify whether it is per-instance landmark recognition accuracy, mAP, or another measure.
- [Eq. (18)] The SPD formula 'mindistance(Loc_goal − Loc_stop)' is informal; please clarify that SPD is the graph shortest-path distance between the stop node and the goal node in the Touchdown environment.
- [Sec. III.A, Sec. IV.D] The method for splitting a panorama into left/front/right 60-degree views is not described in enough detail to know how headings are tracked across steps and how the three views are selected when the agent turns; a short algorithmic description would improve reproducibility.
- [References [8]–[10]] References [8], [9], and [10] all point to the same DJI enterprise page and appear identical; these citations do not support three distinct applications and should be corrected or consolidated.
- [Eq. (10)] The index range '0≤i<N−1' in the max operation should be '0≤i≤N−1' to include the last bounding box.
- [Sec. III.B] The sentence 'an example of two datasets is presented in Figure 2' is a fragment; it should be 'examples from the two datasets are presented in Figure 2'.
Circularity Check
Minor circularity in the in-domain landmark-recognizer evaluation; the central navigation claims rest on external benchmarks.
-
fitted input called prediction
[Section V-C, 'Performances of Visual Recognizer for Landmark', Figure 8; also Contribution (2) in Section I]
"The accuracy curves of the GLIP before and after fine-tuning on the NavAgent-Landmark2K validation set are presented in Figure 8. The experimental results indicate that the fine-tuned GLIP, trained using our NavAgent-Landmark2K dataset, demonstrates exceptional performance in the fine-grained landmark recognition task. It can accurately identify landmarks that occupy a relatively small percentage of the complex scene, thereby facilitating the ability of visual recognizer for landmark to convert the observed image information into landmark recognition data."
The reported 9.5% improvement is measured on the validation split of NavAgent-Landmark2K, the same dataset used to fine-tune the GLIP visual recognizer (Section V-A states: 'we fine-tune the GLIP using the NavAgent-Landmark2K dataset'). The recognizer's weights are optimized to maximize recognition accuracy on this dataset, so the comparison against the unfine-tuned GLIP on the same dataset's held-out split is an in-domain fit result rather than a transfer result on Touchdown or Map2seq. It is therefore not independent evidence for the paper's repeated claim that the recognizer improves fine-grained landmark recognition 'in the context of outdoor VLN'. This is a fitted-input evaluation presented as a capability gain, although it is not the basis of the main external navigation comparison.
full rationale
The central navigation claim is not circular: NavAgent is trained on Touchdown/Map2seq and evaluated on their held-out development and test splits against external baselines such as VELMA, ORAR, GPT-4o, BLIP2, and LLaVA. Those benchmark numbers are externally defined and do not reduce to any fitted parameter of the paper. I found no self-citation chains, no imported uniqueness theorems, and no ansatz smuggled in via citation. The only mild circularity is the component-level landmark-recognition evaluation: GLIP is fine-tuned on NavAgent-Landmark2K and then its 9.5% improvement is reported on the validation split of the same dataset. That is a standard but non-independent evaluation and is not load-bearing for the headline navigation results. Separately, the paper has correctness/consistency concerns that are outside circularity: the UAV claim is untested because all experiments are in the ground-level street-view Touchdown/Map2seq environments and AerialVLN is not used, and there are numerical inconsistencies (Touchdown TC 27.2 in Table II vs 27.8 in Table IV; abstract 2.2% vs Table II's 2.4% relative Map2seq dev gain). These should be addressed as claim-scope and reporting issues, not as circular derivation.
Assumptions & free parameters
free parameters (4)
- verbalizer threshold τ =
0.8
- loss weights λ1 and λ2 =
0.5 and 0.5
- LoRA rank r =
8
- GLIP fine-tuning learning rate and epochs =
1e-4 and 25 epochs
assumptions (4)
- domain assumption The Touchdown and Map2seq street-level panoramic environments are treated as valid proxies for UAV urban navigation.
- domain assumption Annotators' bounding boxes and BLIP2-generated captions in NavAgent-Landmark2K are accurate.
- domain assumption The environment graph (nodes and edges) is available online to build the topology map during navigation.
- domain assumption Pre-trained models (GLIP, LLaMa2-13b, GPT-4) produce reliable features and outputs for landmark detection and decision-making.
Cite this review
Pith. "Pith review of NavAgent: Multi-scale Urban Street View Fusion For UAV Embodied Vision-and-Language Navigation." pith.science (2026). https://pith.science/paper/22XWZNLV
@misc{pith2026241108579,
author = {Pith},
title = {Pith review of: NavAgent: Multi-scale Urban Street View Fusion For UAV Embodied Vision-and-Language Navigation},
year = {2026},
howpublished = {\url{https://pith.science/paper/22XWZNLV}},
note = {Machine review of arXiv:2411.08579}
}
read the original abstract
Vision-and-Language Navigation (VLN), as a widely discussed research direction in embodied intelligence, aims to enable embodied agents to navigate in complicated visual environments through natural language commands. Most existing VLN methods focus on indoor ground robot scenarios. However, when applied to UAV VLN in outdoor urban scenes, it faces two significant challenges. First, urban scenes contain numerous objects, which makes it challenging to match fine-grained landmarks in images with complex textual descriptions of these landmarks. Second, overall environmental information encompasses multiple modal dimensions, and the diversity of representations significantly increases the complexity of the encoding process. To address these challenges, we propose NavAgent, the first urban UAV embodied navigation model driven by a large Vision-Language Model. NavAgent undertakes navigation tasks by synthesizing multi-scale environmental information, including topological maps (global), panoramas (medium), and fine-grained landmarks (local). Specifically, we utilize GLIP to build a visual recognizer for landmark capable of identifying and linguisticizing fine-grained landmarks. Subsequently, we develop dynamically growing scene topology map that integrate environmental information and employ Graph Convolutional Networks to encode global environmental data. In addition, to train the visual recognizer for landmark, we develop NavAgent-Landmark2K, the first fine-grained landmark dataset for real urban street scenes. In experiments conducted on the Touchdown and Map2seq datasets, NavAgent outperforms strong baseline models. The code and dataset will be released to the community to facilitate the exploration and development of outdoor VLN.
Figures
Figures from the paper (8 more)
Forward citations
Cited by 9 Pith papers
-
Rule-VLN: Bridging Perception and Compliance via Semantic Reasoning and Geometric Rectification
Rule-VLN is the first large-scale benchmark injecting 177 regulatory categories into an urban environment, and the proposed SNRM module equips pre-trained VLN agents with zero-shot semantic reasoning and detour planni...
-
Parse, Search, and Confirmation: Training-Free Aerial Vision-and-Dialog Navigation with Chain-of-Thought Reasoning and Structured Spatial Memory
A three-stage parse-search-confirm MLLM pipeline plus structured spatial memory sets training-free SOTA on AVDN, matching or beating several supervised methods on ANDH and ANDH-Full.
-
Deliberate Before You Fly: Vision-Guided Spatial Deliberation for UAV See-and-Reach Navigation
DBFly improves UAV see-and-reach success by adding explicit spatial reasoning steps (direction, diagnosis, maneuver, stop) before predicting waypoints, reporting a 25-point gain over the prior SOTA on the UAV-VLN-FOV ...
-
When Large Language Models Meet UAV Projects: An Empirical Study from Developers' Perspective
The first empirical taxonomy of LLM tasks in UAVs, with an academia-industry comparison and survey, shows LLMs are used mainly for planning and interaction, not direct control.
-
UAV-ON: A Benchmark for Open-World Object Goal Navigation with Aerial Agents
UAV-ON is a new benchmark of 14 Unreal Engine environments with 1270 annotated objects that tests whether aerial agents can navigate to goals described by semantic instance-level instructions.
-
A Comprehensive Survey and Systematic Real-World Evaluation of Embodied Vision-and-Language Navigation
VLN methods show a large sim-to-real gap; a hierarchical system reaches 51% real-world success versus 22% for a monolithic RGB-only system across ten physical scenes.
-
Towards Effcient Low Altitude Sensing: A Dual Heterogeneous Graph Learning Method for UAV Task Allocation
Matching a directed task graph to a UAV communication graph with GAT, cross-attention, and PPO yields more completed dependent sensing tasks and lower makespan than standard baselines in simulation.
-
LogisticsVLN: Vision-Language Navigation For Low-Altitude Terminal Delivery Based on Agentic UAVs
An off-the-shelf MLLM-based UAV system achieves 54.7% success on a new 300-task simulated window-level delivery benchmark.
-
Fly0: Persistent Metric Anchoring for Zero-Shot Aerial Vision-Language Navigation
A zero-shot aerial VLN system that has an MLLM output only 2D image coordinates, then uses depth unprojection and Ego-Planner to navigate, reporting >20 percentage-point SR gains and 31–37% NE reductions over baselines.
Reference graph
Works this paper leans on
-
[1]
Aerialvln: Vision-and-language navigation for uavs,
S. Liu, H. Zhang, Y . Qi, P. Wang, Y . Zhang, and Q. Wu, “Aerialvln: Vision-and-language navigation for uavs,”2023 IEEE/CVF International Conference on Computer Vision (ICCV) , pp. 15 338–15 348, 2023. [On- line]. Available: https://api.semanticscholar.org/CorpusID:260887759
work page 2023
-
[2]
P. Anderson, Q. Wu, D. Teney, J. Bruce, and A. V . D. Hengel, “Vision- and-language navigation: Interpreting visually-grounded navigation in- structions in real environments,” 2017
work page 2017
-
[3]
Reverie: Remote embodied visual referring expression in real indoor environ- ments,
Y . Qi, Q. Wu, P. Anderson, X. Wang, and A. V . D. Hengel, “Reverie: Remote embodied visual referring expression in real indoor environ- ments,” in 2020 IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), 2020
work page 2020
-
[4]
Stay on the path: Instruction fidelity in vision-and-language navigation,
V . Jain, G. Magalhaes, A. Ku, A. Vaswani, E. Ie, and J. Baldridge, “Stay on the path: Instruction fidelity in vision-and-language navigation,” 2019
work page 2019
-
[5]
A. Ku, P. Anderson, R. Patel, E. Ie, and J. Baldridge, “Room-across- room: Multilingual vision-and-language navigation with dense spa- tiotemporal grounding,” arXiv e-prints, 2020
work page 2020
-
[6]
Beyond the nav-graph: Vision-and-language navigation in continuous environments,
J. Krantz, E. Wijmans, A. Majumdar, D. Batra, and S. Lee, “Beyond the nav-graph: Vision-and-language navigation in continuous environments,” 2020
work page 2020
-
[7]
Touchdown: Natural language navigation and spatial reasoning in visual street environments,
H. Chen, A. Suhr, D. K. Misra, N. Snavely, and Y . Artzi, “Touchdown: Natural language navigation and spatial reasoning in visual street environments,” 2019 IEEE /CVF Conference on Computer Vision and Pattern Recognition (CVPR) , pp. 12 530–12 539, 2018. [Online]. Available: https://api.semanticscholar.org/CorpusID:54078068
work page 2019
-
[8]
Dji drone solutions for inspection and infrastructure construction in the oil and gas industry,
DJI, “Dji drone solutions for inspection and infrastructure construction in the oil and gas industry,” Website, 2022. [Online]. Available: https://enterprise.dji.com/cn/oil-and-gas
work page 2022
Show all 63 references
-
[9]
Dji drone solutions for optimizing operations in the public safety industry,
——, “Dji drone solutions for optimizing operations in the public safety industry,” Website, 2022. [Online]. Available: https: //enterprise. dji.com/cn/oil-and-gas
2022
-
[10]
Dji drone solutions for surveying, urban planning, aec, and natural resource management,
——, “Dji drone solutions for surveying, urban planning, aec, and natural resource management,” Website, 2022. [Online]. Available: https://enterprise.dji.com/cn/oil-and-gas
2022
-
[11]
Hop+: History- enhanced and order-aware pre-training for vision-and-language naviga- tion,
Y . Qiao, Y . Qi, Y . Hong, Z. Yu, P. Wang, and Q. Wu, “Hop+: History- enhanced and order-aware pre-training for vision-and-language naviga- tion,” IEEE Transactions on Pattern Analysis and Machine Intelligence , vol. 45, no. 7, pp. 8524–8537, 2023
2023
-
[12]
Correctable landmark discovery via large models for vision-language navigation,
B. Lin, Y . Nie, Z. Wei, Y . Zhu, H. Xu, S. Ma, J. Liu, and X. Liang, “Correctable landmark discovery via large models for vision-language navigation,” IEEE Transactions on Pattern Analysis and Machine Intelligence , p. 1–14, 2024. [Online]. Available: http://dx.doi.org/10.110...
2024
-
[13]
Learning to follow and generate instructions for language-capable navigation,
X. Wang, W. Wang, J. Shao, and Y . Yang, “Learning to follow and generate instructions for language-capable navigation,” IEEE Transac- tions on Pattern Analysis and Machine Intelligence , vol. 46, no. 5, pp. 3334–3350, 2024. JOURNAL OF LATEX CLASS FILES, VOL. 14, NO. 8, AUGUST 2021 13
2024
-
[14]
Etpnav: Evolving topological planning for vision-language navigation in continuous environments,
D. An, H. Wang, W. Wang, Z. Wang, Y . Huang, K. He, and L. Wang, “Etpnav: Evolving topological planning for vision-language navigation in continuous environments,” 2024. [Online]. Available: https://arxiv.org/abs/2304.03047
2024 arXiv
-
[15]
Towards deviation-robust agent navigation via perturbation-aware con- trastive learning,
B. Lin, Y . Long, Y . Zhu, F. Zhu, X. Liang, Q. Ye, and L. Lin, “Towards deviation-robust agent navigation via perturbation-aware con- trastive learning,” IEEE Transactions on Pattern Analysis and Machine Intelligence, vol. 45, no. 10, pp. 12 535–12 549, 2023
2023
-
[16]
A survey on vision-based uav navigation,
Y . Lu, Z. Xue, G. S. Xia, and L. Zhang, “A survey on vision-based uav navigation,” no. 1
-
[17]
Vision-based navigation of unmanned aerial vehicles,
J. Courbon, Y . Mezouar, N. Gu ´enard, and P. Martinet, “Vision-based navigation of unmanned aerial vehicles,” Control Engineering Practice, vol. 18, no. 7, pp. 789–799, 2010
2010
-
[18]
Mapping instructions to actions in 3d environments with visual goal prediction,
D. Misra, A. Bennett, V . Blukis, E. Niklasson, and Y . Artzi, “Mapping instructions to actions in 3d environments with visual goal prediction,” 2018
2018
-
[19]
Following high-level navigation instructions on a simulated quadcopter with imitation learning,
V . Blukis, N. Brukhim, A. Bennett, R. A. Knepper, and Y . Artzi, “Following high-level navigation instructions on a simulated quadcopter with imitation learning,” 2018
2018
-
[20]
Mapping naviga- tion instructions to continuous control actions with position-visitation prediction,
V . Blukis, D. Misra, R. A. Knepper, and Y . Artzi, “Mapping naviga- tion instructions to continuous control actions with position-visitation prediction,” 2018
2018
-
[21]
Blip-2: Bootstrapping language-image pre-training with frozen image encoders and large language models,
J. Li, D. Li, S. Savarese, and S. C. H. Hoi, “Blip-2: Bootstrapping language-image pre-training with frozen image encoders and large language models,” in International Conference on Machine Learning ,
-
[22]
Visual instruction tuning,
H. Liu, C. Li, Q. Wu, and Y . J. Lee, “Visual instruction tuning,” 2023. [Online]. Available: https://arxiv.org/abs/2304.08485
2023 arXiv
-
[23]
Grounded language-image pre- training,
L. H. Li, P. Zhang, H. Zhang, J. Yang, C. Li, Y . Zhong, L. Wang, L. Yuan, L. Zhang, and J. N. Hwang, “Grounded language-image pre- training,” 2021
2021
-
[24]
Instructblip: Towards general-purpose vision- language models with instruction tuning,
W. Dai, J. Li, D. Li, A. M. H. Tiong, J. Zhao, W. Wang, B. Li, P. Fung, and S. Hoi, “Instructblip: Towards general-purpose vision- language models with instruction tuning,” 2023
2023
-
[25]
Kosmos-2: Grounding multimodal large language models to the world,
Z. Peng, W. Wang, L. Dong, Y . Hao, S. Huang, S. Ma, and F. Wei, “Kosmos-2: Grounding multimodal large language models to the world,” 2023. [Online]. Available: https: //arxiv.org/abs/2306.14824
2023 arXiv
-
[26]
Llama-adapter: E fficient fine-tuning of language models with zero-init attention,
R. Zhang, J. Han, C. Liu, P. Gao, A. Zhou, X. Hu, S. Yan, P. Lu, H. Li, and Y . Qiao, “Llama-adapter: E fficient fine-tuning of language models with zero-init attention,” 2024. [Online]. Available: https://arxiv.org/abs/2303.16199
2024 arXiv
-
[27]
Minigpt-4: Enhancing vision-language understanding with advanced large language models,
D. Zhu, J. Chen, X. Shen, X. Li, and M. Elhoseiny, “Minigpt-4: Enhancing vision-language understanding with advanced large language models,” ArXiv, vol. abs /2304.10592, 2023. [Online]. Available: https://api.semanticscholar.org/CorpusID:258291930
2023 arXiv
-
[28]
Qwen technical report,
J. Bai, S. Bai, Y . Chu, Z. Cui, and et al, “Qwen technical report,” ArXiv, vol. abs /2309.16609, 2023. [Online]. Available: https://api.semanticscholar.org/CorpusID:263134555
2023 arXiv
-
[29]
Gsv-cities: Toward appropriate supervised visual place recognition,
A. Ali-bey, B. Chaib-draa, and P. Gigu `ere, “Gsv-cities: Toward appropriate supervised visual place recognition,” Neurocomputing, vol. 513, p. 194–203, Nov. 2022. [Online]. Available: http: //dx.doi.org/10. 1016/j.neucom.2022.09.127
2022
-
[30]
The streetlearn environment and dataset,
P. Mirowski, A. Banki-Horvath, K. Anderson, D. Teplyashin, and R. Hadsell, “The streetlearn environment and dataset,” 2019
2019
-
[31]
Learning to follow directions in street view,
K. M. Hermann, M. Malinowski, P. Mirowski, A. Banki-Horvath, and R. Hadsell, “Learning to follow directions in street view,” 2020, pp. 11 773–11 781
2020
-
[32]
Retouchdown: Adding touchdown to streetlearn as a shareable resource for language grounding tasks in street view,
H. Mehta, Y . Artzi, J. Baldridge, E. Ie, and P. Mirowski, “Retouchdown: Adding touchdown to streetlearn as a shareable resource for language grounding tasks in street view,” 2020
2020
-
[33]
Silg: The multi-environment symbolic interactive language grounding benchmark,
V . Zhong, A. W. Hanjie, S. I. Wang, K. Narasimhan, and L. Zettlemoyer, “Silg: The multi-environment symbolic interactive language grounding benchmark,” 2021
2021
-
[34]
Outdoor vision-and-language navigation needs object-level alignment,
Y . Sun, Y . Qiu, Y . Aoki, and H. Kataoka, “Outdoor vision-and-language navigation needs object-level alignment,” Sensors (Basel, Switzerland) , vol. 23, 2023. [Online]. Available: https: //api.semanticscholar.org/ CorpusID:259693397
2023
-
[35]
A priority map for vision-and- language navigation with trajectory plans and feature-location cues,
J. Armitage, L. Impett, and R. Sennrich, “A priority map for vision-and- language navigation with trajectory plans and feature-location cues,”
-
[36]
Multimodal text style transfer for outdoor vision- and-language navigation,
W. Zhu, X. Wang, T. J. Fu, A. Yan, P. Narayana, K. Sone, S. Basu, and W. Y . Wang, “Multimodal text style transfer for outdoor vision- and-language navigation,” 2021
2021
-
[37]
Lm-nav: Robotic navigation with large pre-trained models of language, vision, and action,
D. Shah, B. Osinski, B. Ichter, and S. Levine, “Lm-nav: Robotic navigation with large pre-trained models of language, vision, and action,” 2022. [Online]. Available: https: //arxiv.org/abs/2207.04429
2022 arXiv
-
[38]
Velma: Verbalization embodiment of llm agents for vision and language navigation in street view,
R. Schumann, W. Zhu, W. Feng, T. J. Fu, S. Riezler, and W. Y . Wang, “Velma: Verbalization embodiment of llm agents for vision and language navigation in street view,” ArXiv, vol. abs /2307.06082, 2023
2023 arXiv
-
[39]
Opt: Open pre-trained transformer language models,
S. Zhang, S. Roller, N. Goyal, M. Artetxe, M. Chen, S. Chen, C. Dewan, M. Diab, X. Li, and X. V . Lin, “Opt: Open pre-trained transformer language models,” arXiv e-prints, 2022
2022
-
[40]
Palm-e: An embodied multimodal language model,
D. Driess, F. Xia, M. S. M. Sajjadi, and et al, “Palm-e: An embodied multimodal language model,” in International Conference on Machine Learning, 2023. [Online]. Available: https: //api.semanticscholar.org/ CorpusID:257364842
2023
-
[41]
Training language models to follow instructions with human feedback,
L. Ouyang, J. Wu, X. Jiang, D. Almeida, C. L. Wainwright, P. Mishkin, C. Zhang, S. Agarwal, K. Slama, and A. Ray, “Training language models to follow instructions with human feedback,” arXiv e-prints, 2022
2022
-
[42]
Gpt-4 technical report,
OpenAI, J. Achiam, S. Adler, S. Agarwal, L. Ahmad, I. Akkaya, F. L. Aleman, D. Almeida, J. Altenschmidt, S. Altman, S. Anadkat, R. Avila, I. Babuschkin, S. Balaji, V . Balcom, P. Baltescu, H. Bao, M. Bavarian, J. Belgum, I. Bello, J. Berdine, G. Bernadett-Shapiro, C. Berner, L...
2024 arXiv
-
[43]
Llama: Open and e fficient foun- dation language models,
H. Touvron, T. Lavril, G. Izacard, X. Martinet, M.-A. Lachaux, T. Lacroix, B. Rozi `ere, N. Goyal, E. Hambro, F. Azhar, A. Rodriguez, A. Joulin, E. Grave, and G. Lample, “Llama: Open and e fficient foun- dation language models,” ArXiv, vol. abs /2302.13971, 2023. [Online]. Ava...
2023 arXiv
-
[44]
Esc: Exploration with soft commonsense constraints for zero-shot object navigation,
K. Zhou, K. Zheng, C. Pryor, Y . Shen, H. Jin, L. Getoor, and X. E. Wang, “Esc: Exploration with soft commonsense constraints for zero-shot object navigation,” 2023. [Online]. Available: https://arxiv.org/abs/2301.13166
2023 arXiv
-
[45]
Navgpt: Explicit reasoning in vision-and-language navigation with large language models,
G. Zhou, Y . Hong, and Q. Wu, “Navgpt: Explicit reasoning in vision-and-language navigation with large language models,” 2023. [Online]. Available: https://arxiv.org/abs/2305.16986
2023 arXiv
-
[46]
Neural slam: Learning to explore with external memory,
J. Zhang, L. Tai, J. Boedecker, W. Burgard, and M. Liu, “Neural slam: Learning to explore with external memory,” 2017. JOURNAL OF LATEX CLASS FILES, VOL. 14, NO. 8, AUGUST 2021 14
2017
-
[47]
Egomap: Pro- jective mapping and structured egocentric memory for deep rl,
E. Beeching, J. Dibangoye, O. Simonin, and C. Wolf, “Egomap: Pro- jective mapping and structured egocentric memory for deep rl,” 2021
2021
-
[48]
Semantic mapnet: Building allocentric semanticmaps and representations from egocentric views,
V . Cartillier, Z. Ren, N. Jain, S. Lee, and D. Batra, “Semantic mapnet: Building allocentric semanticmaps and representations from egocentric views,” 2020
2020
-
[49]
Audio visual language maps forrobot navigation,
C. Huang, O. Mees, A. Zeng, and W. Burgard, “Audio visual language maps forrobot navigation,” in International Symposium on Experimental Robotics, 2024
2024
-
[50]
Mapnet: An allocentric spatial memory for mapping environments,
J. F. H. A. Vedaldi, “Mapnet: An allocentric spatial memory for mapping environments,” in IEEE/CVF Conference on Computer Vision & Pattern Recognition, 2018
2018
-
[51]
Bevbert: Multimodal map pre-training for language-guided navigation,
D. An, Y . Qi, Y . Li, Y . Huang, L. Wang, T. Tan, and J. Shao, “Bevbert: Multimodal map pre-training for language-guided navigation,” 2023. [Online]. Available: https://arxiv.org/abs/2212.04385
2023 arXiv
-
[52]
Cognitive mapping and planning for visual navigation,
S. Gupta, V . Tolani, J. Davidson, S. Levine, R. Sukthankar, and J. Malik, “Cognitive mapping and planning for visual navigation,” International Journal of Computer Vision , no. 4, 2017
2017
-
[53]
Semantic mapnet: Building allocentric semantic maps and representations from egocentric views,
V . Cartillier, Z. Ren, N. Jain, S. Lee, I. Essa, and D. Batra, “Semantic mapnet: Building allocentric semantic maps and representations from egocentric views,” in National Conference on Artificial Intelligence , 2021
2021
-
[54]
Cross-modal map learning for vision and language navigation,
G. Georgakis, K. Schmeckpeper, K. Wanchoo, S. Dan, E. Miltsakaki, D. Roth, and K. Daniilidis, “Cross-modal map learning for vision and language navigation,” 2022
2022
-
[55]
Topo- logical planning with transformers for vision-and-language navigation,
K. Chen, J. K. Chen, J. Chuang, M. Vazquez, and S. Savarese, “Topo- logical planning with transformers for vision-and-language navigation,” in Computer Vision and Pattern Recognition , 2021
2021
-
[56]
Generating landmark navigation instruc- tions from maps as a graph-to-text problem,
R. Schumann and S. Riezler, “Generating landmark navigation instruc- tions from maps as a graph-to-text problem,” 2020
2020
-
[57]
Microsoft coco: Common objects in context,
T.-Y . Lin, M. Maire, S. Belongie, L. Bourdev, R. Girshick, J. Hays, P. Perona, D. Ramanan, C. L. Zitnick, and P. Doll ´ar, “Microsoft coco: Common objects in context,” 2015. [Online]. Available: https://arxiv.org/abs/1405.0312
2015 arXiv
-
[58]
Dynamic head: Unifying object detection heads with attentions,
X. Dai, Y . Chen, B. Xiao, D. Chen, M. Liu, L. Yuan, and L. Zhang, “Dynamic head: Unifying object detection heads with attentions,” in 2021 IEEE/CVF Conference on Computer Vision and Pattern Recogni- tion (CVPR), 2021, pp. 7369–7378
2021
-
[59]
Bert: Pre-training of deep bidirectional transformers for language understanding,
J. Devlin, M.-W. Chang, K. Lee, and K. Toutanova, “Bert: Pre-training of deep bidirectional transformers for language understanding,” in North American Chapter of the Association for Computational Linguistics ,
-
[60]
Analyzing generalization of vision and language navigation to unseen outdoor areas,
R. Schumann and S. Riezler, “Analyzing generalization of vision and language navigation to unseen outdoor areas,” 2022. [Online]. Available: https://arxiv.org/abs/2203.13838 Youzhi Liu received the B.Sc. degree from Hunan University, changsha, China, in 2022. He is currently a...
2022 arXiv
-
[2019]
Available: https: //api.semanticscholar.org/CorpusID: 52967399
[Online]. Available: https: //api.semanticscholar.org/CorpusID: 52967399
-
[2022]
Available: https: //arxiv.org/abs/2207.11717
[Online]. Available: https: //arxiv.org/abs/2207.11717
-
[2023]
Available: https: //api.semanticscholar.org/CorpusID: 256390509
[Online]. Available: https: //api.semanticscholar.org/CorpusID: 256390509
Reviewed August 12, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.