REVIEW 4 major objections 5 minor 5 cited by
Grounded Vision-Language Navigation for UAVs with Open-Vocabulary Goal Understanding
T0 review · 4 major / 5 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read VLFly enables a UAV to follow open-vocabulary natural language instructions in unseen environments, without fine-tuning and using only monocular RGB observations.
desk verdict A clean modular zero-shot UAV VLN system with real flight demos, but the 'outperforms all baselines' claim is not actually tested end-to-end. 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 chain is a cascade of three modules. The instruction encoder uses an LLM (LLaMA) with a constrained prompt template to rewrite any free-form instruction into the standardized line "Goal Image: a photo of [selected item]", restricting answers to a supplied list plus common objects. The goal retriever uses CLIP to embed that prompt and every candidate image in a shared space, selecting the image with the highest scaled cosine similarity after a softmax. The waypoint planner is a ViNT-style decoder-only Transformer: past egocentric frames are encoded separately, concatenated with a goal token produced from the current frame and goal image, and decoded into a temporal distance estimate plus a sequence of future relative waypoints; a PID controller then converts those waypoints to linear and angular velocities.
What would settle it
Take the VLFly pipeline in the furniture simulation, replace the retrieved goal image with an unrelated image from the same candidate pool, and keep everything else identical; if success rate stays comparable to the full system rather than collapsing, the language-grounding modules are not doing the work attributed to them. A complementary check is running ViNT alone with the true goal image and no language input against VLFly.
Extended reading notes
Core claim
The paper's central claim is that decomposing UAV vision-language navigation into three pre-trained components—an LLM that reformulates instructions into fixed-format goal prompts, a VLM that retrieves the best-matching goal image from a candidate pool, and a waypoint Transformer that predicts future egocentric positions from stacked frames plus the goal image—enables a drone to navigate by language with no additional training. VLFly outputs continuous velocity commands at about 7–15 Hz in simulation and on a real Tello Edu, using only monocular RGB observations. The authors report that it outperforms all baselines across medium and hard simulated environments and achieves 83% success on direct and 70% on indirect real-world instructions, with the indirect gap traced to semantic ambiguity in goal grounding.
Load-bearing premise
The load-bearing premise is that the ViNT waypoint planner, pretrained on ground robots, transfers to UAV egocentric video without any adaptation, a premise the experiments never isolate by comparing VLFly against ViNT alone or with a ground-truth goal image.
Editorial extensions
If this is right
- If VLFly's reported performance holds, UAV language navigation can be assembled from off-the-shelf pretrained components, avoiding per-environment data collection and fine-tuning.
- Continuous velocity output removes the discrete-action assumption that most VLN methods inherit, making the framework directly deployable on real quadrotors.
- Indirect instructions become tractable because the LLM step converts abstract semantics into a concrete goal phrase before visual grounding.
- The system works without localization, depth sensors, or mapping, so deployment cost reduces to a monocular camera and a laptop or onboard GPU.
- Performance degrades gracefully under semantic ambiguity, pointing to goal grounding rather than flight control as the limiting stage.
Reading between the lines
- Editorial inference: the simulation baselines are evaluated without language grounding, so the simulation table chiefly tests waypoint planning; the language-grounding claim rests on the real-world trials and ablations, and a cleaner test would run VLFly in simulation with the same language instructions used in the real-world tasks.
- Editorial inference: because the goal retriever requires a pre-collected candidate image pool, the framework's open-vocabulary power is bounded by pool coverage; pairing the retriever with an open-set detector could extend it to goals never imaged beforehand, a direction the conclusion names for future work.
- Editorial inference: the reported 70–83% real-world success rates over 20 trials per condition suggest that instruction complexity, not environmental clutter, is the main failure driver; tracking goal-retrieval accuracy separately from navigation success would quantify how much of the indirect-instruction gap comes from ambiguous grounding versus trajectory error.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes VLFly, a modular zero-shot vision-and-language navigation (VLN) framework for UAVs. VLFly combines an LLM-based instruction encoder (LLaMA) that reformulates natural language into structured prompts, a CLIP-based goal retriever that matches the prompt to a predefined pool of goal images, and a ViNT-based waypoint planner that outputs continuous velocity commands from egocentric monocular RGB observations. The authors claim that VLFly, without any fine-tuning, outperforms all baselines in simulation and achieves robust open-vocabulary goal understanding in real-world indoor and outdoor flight tests. The manuscript presents simulation results in three Unity environments, real-world experiments with a Tello Edu drone, and ablation studies of the three modules.
Significance. If the central claim were fully supported, VLFly would be a valuable demonstration that off-the-shelf foundation models (LLM, CLIP, ViNT) can be integrated into a zero-shot, continuous-control UAV navigation pipeline. The real-world flights with egocentric monocular input and no external localization are a positive contribution, as is the use of continuous velocity commands rather than discrete actions. The paper also gives credit for releasing materials via a project page. However, the current evidence does not establish the headline claim of consistently outperforming all baselines on VLN, because the simulation comparison omits language grounding for the baselines and the real-world language experiments have no baselines. The lack of a ViNT-only ablation makes the specific contribution of the proposed modules unclear.
major comments (4)
- [Section IV-B, Table I, and Abstract] The central claim that VLFly 'consistently outperforms all baselines' is not supported by the experiments as designed. Section IV-B explicitly states that 'all baselines are evaluated solely on their navigation performance in simulation, without involving any language grounding components' and that the UAV is given a specified goal position. Thus Table I compares navigation-only performance, not vision-and-language navigation. The only instruction-driven evaluation, in Section IV-C, reports no baselines. Consequently, there is no experiment that compares the full VLFly system with the baselines on the same VLN task. This is load-bearing because the paper's main contribution is the language-to-navigation integration, so the headline claim should either be supported by a full VLN comparison or qualified accordingly.
- [Section III-C3 and Table II] The waypoint planner is ViNT, a pretrained visual navigation model described in [34], used without any fine-tuning. ViNT itself is never evaluated as a standalone baseline or as an ablation of VLFly. Without comparing VLFly to ViNT given the same retrieved goal image (or a ground-truth goal image), the observed navigation performance cannot be attributed to the proposed instruction encoding and goal retrieval modules rather than to ViNT's pretrained navigation competence. The ablation 'w/ RL Policy' in Table II replaces the waypoint planner, but it does not isolate ViNT's contribution to the integrated system, leaving a significant attribution gap.
- [Section IV-B and Figure 3] The box environment is excluded from the trajectory-based evaluation because 'it is primarily used for training certain baselines.' Table I shows that PPO and NPE-DRL outperform VLFly in that environment (SR 90.4 and 92.2 vs. 86.4). While the text qualifies the statement to 'unseen environments,' the abstract and conclusion state that VLFly 'consistently outperforms all baselines' without this qualification. The authors should either include a fully fair comparison in the training environment and discuss the outcome, or consistently restrict the claim to unseen environments throughout the paper.
- [Section IV-C, Figure 2, and Conclusion] The 'open-vocabulary goal understanding' claim is constrained by the design of the evaluation. The LLM prompt in Figure 2 restricts selection to a list of 100 common daily-life objects plus user-specified custom items, and the goal retriever selects from a predefined image pool. The conclusion acknowledges this limitation ('the goal retrieval module depends on a predefined image pool, limiting adaptability in open-world environments'). Given this explicit limitation, the abstract's unqualified 'open-vocabulary' wording should be tempered, or the paper should demonstrate retrieval from a dynamically generated candidate set to substantiate the stronger claim.
minor comments (5)
- [Section IV-C] The real-world success threshold is set to 0.8 m while the simulation threshold is 0.5 m; please justify this difference or report the sensitivity of the success rate to the threshold choice.
- [Section IV-D] The phrase 'under indirect instreuctions' contains a typo; it should read 'instructions'.
- [Figure 3 caption] The caption notes that the box environment is excluded from trajectory evaluation, but this information appears only in the caption; consider adding a corresponding statement in the main text of Section IV-B where the environments are introduced.
- [Section III-C3] The text contains a formatting issue: 'UA V' appears with a space; also in Section IV-C 'VLFLy' should be 'VLFly'.
- [General] Since ViNT [34] is a core component, the paper should describe its pretraining data and domain more explicitly when discussing the transfer from ground robots to UAVs, to support the claim that the architecture is robust without adaptation.
Circularity Check
No significant circularity: VLFly is an untrained integration of pretrained modules; self-citations are not load-bearing and evaluation gaps are experimental, not definitional.
full rationale
The paper's derivation chain is modular integration rather than mathematical derivation. None of the three modules (LLaMA prompt encoder, CLIP goal retriever, ViNT waypoint planner) is fine-tuned or fitted to the evaluation data in this paper, and no equation defines an output in terms of the success metric. The LLM prompt in Fig. 2 does constrain goal selection to a generated list plus user-supplied custom items, and the goal retriever matches against a predefined image pool; as the paper's own conclusion admits, this limits open-world adaptability. That is a scope and validity limitation, not circularity: the physical arrival success criteria are external to the language-grounding inputs, and the reported success rates are not forced by construction. The self-citations ([13], [15], [27], [28], [29]) appear as related-work examples or as one baseline and do not supply a load-bearing premise; no uniqueness theorem or prior ansatz is imported to make the framework's choice forced. The absence of a full-VLN baseline comparison in Table I, where baselines are evaluated without language grounding, and the lack of a ViNT-only ablation are experimental attribution gaps that belong under correctness risk, not circularity. No step in the paper reduces to its own inputs, so no circular step is identified.
Assumptions & free parameters
free parameters (3)
- Real-world success threshold =
0.8 m
- Predefined goal image pool and custom item list =
Small closed set of objects (e.g., backpack, toy, AprilTag)
- Velocity scaling Vmax and control frequency =
Unspecified
assumptions (5)
- domain assumption ViNT, pretrained on ground robot navigation data, transfers to UAV egocentric observations without fine-tuning.
- domain assumption CLIP similarity reliably ranks the correct goal image within the predefined pool across lighting and viewpoint changes.
- domain assumption LLaMA-3-8B can reformulate arbitrary abstract instructions into the canonical 'a photo of [item]' format without grounding failure.
- domain assumption Egocentric monocular RGB observations contain sufficient information for the planner to avoid obstacles and reach the goal without localization or ranging sensors.
- domain assumption The PID controller accurately tracks predicted normalized waypoints under real UAV dynamics.
Cite this review
Pith. "Pith review of Grounded Vision-Language Navigation for UAVs with Open-Vocabulary Goal Understanding." pith.science (2026). https://pith.science/paper/MZZGOJFN
@misc{pith2026250610756,
author = {Pith},
title = {Pith review of: Grounded Vision-Language Navigation for UAVs with Open-Vocabulary Goal Understanding},
year = {2026},
howpublished = {\url{https://pith.science/paper/MZZGOJFN}},
note = {Machine review of arXiv:2506.10756}
}
read the original abstract
Vision-and-language navigation (VLN) is a long-standing challenge in autonomous robotics, aiming to empower agents with the ability to follow human instructions while navigating complex environments. Two key bottlenecks remain in this field: generalization to out-of-distribution environments and reliance on fixed discrete action spaces. To address these challenges, we propose Vision-Language Fly (VLFly), a framework tailored for Unmanned Aerial Vehicles (UAVs) to execute language-guided flight. Without the requirement for localization or active ranging sensors, VLFly outputs continuous velocity commands purely from egocentric observations captured by an onboard monocular camera. The VLFly integrates three modules: an instruction encoder based on a large language model (LLM) that reformulates high-level language into structured prompts, a goal retriever powered by a vision-language model (VLM) that matches these prompts to goal images via vision-language similarity, and a waypoint planner that generates executable trajectories for real-time UAV control. VLFly is evaluated across diverse simulation environments without additional fine-tuning and consistently outperforms all baselines. Moreover, real-world VLN tasks in indoor and outdoor environments under direct and indirect instructions demonstrate that VLFly achieves robust open-vocabulary goal understanding and generalized navigation capabilities, even in the presence of abstract language input.
Figures
Figures from the paper (2 more)
Forward citations
Cited by 5 Pith papers
-
Uncertainty-Aware World Model for Aerial Image-Goal Navigation
UA-NWM predicts an uncertainty subspace of plausible future aerial views and scores candidate trajectories by the goal's distance to that subspace, improving image-goal navigation in simulation and on a real drone.
-
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 ...
-
FSD-VLN: Fast-Slow Dual-System Modeling for Aerial Long-Horizon Vision-Language Navigation
An asynchronous fast-slow dual-system with DiT action modeling and time-weighted loss doubles unseen aerial VLN success rates and halves decision latency in simulation.
-
No Training, Better Flights: Test-Time Scaled VLMs for UAV Navigation
Test-time scaling—parallel candidate generation, iterative self-correction, and multi-criteria selection—improves a frozen UAV navigation VLM's success rate by about 2 percentage points on the TravelUAV benchmark.
-
Exp2VLA: Enabling Vision-Language-Action for Drone Navigation from Expert Demonstrations
Expert demonstrations distilled into LeRobot-format data let fine-tuned mid-scale VLAs navigate multi-object drone scenes from language, with partial zero-shot color-shape generalization in simulation and SITL.
Reference graph
Works this paper leans on
-
[34]
Vint: A foundation model for visual navigation,
D. Shah, A. Sridhar, N. Dashora, K. Stachowicz, K. Black, N. Hirose, and S. Levine, “Vint: A foundation model for visual navigation,” in Conference on Robot Learning (CoRL), pp. 711–733. PMLR, 2023
work page 2023
-
[1]
Rt-2: Vision-language-action models transfer web knowledge to robotic control,
B. Zitkovich, T. Yu, S. Xu, P. Xu, T. Xiao, F. Xia, J. Wu, P. Wohlhart, S. Welker, A. Wahidet al., “Rt-2: Vision-language-action models transfer web knowledge to robotic control,” inConference on Robot Learning (CoRL), pp. 2165–2183. PMLR, 2023
work page 2023
-
[2]
Citybench: Evaluating the capabilities of large language models for urban tasks,
J. Feng, J. Zhang, T. Liu, X. Zhang, T. Ouyang, J. Yan, Y . Du, S. Guo, and Y . Li, “Citybench: Evaluating the capabilities of large language models for urban tasks,” inInternational Conference on Learning Representations (ICLR), pp. 1–25, 2025
work page 2025
-
[3]
V . N. Devarakonda, R. G. Goswami, A. U. Kaypak, N. Patel, R. Khor- rambakht, P. Krishnamurthy, and F. Khorrami, “Orionnav: Online plan- ning for robot autonomy with context-aware llm and open-vocabulary semantic scene graphs,”arXiv preprint arXiv:2410.06239, 2024
-
[4]
Navigating to objects in the real world,
T. Gervet, S. Chintala, D. Batra, J. Malik, and D. S. Chaplot, “Navigating to objects in the real world,”Science Robotics, vol. 8, no. 79, p. eadf6991, 2023
2023
-
[5]
Orb-slam: A versatile and accurate monocular slam system,
R. Mur-Artal, J. M. M. Montiel, and J. D. Tardos, “Orb-slam: A versatile and accurate monocular slam system,”IEEE Transactions on Robotics, vol. 31, no. 5, pp. 1147–1163, 2015
work page 2015
-
[6]
H. Matsuki, R. Murai, P. H. Kelly, and A. J. Davison, “Gaussian splatting slam,” inProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pp. 18 039–18 048, 2024
work page 2024
-
[7]
Mcsfm: multi-camera-based incremen- tal structure-from-motion,
H. Cui, X. Gao, and S. Shen, “Mcsfm: multi-camera-based incremen- tal structure-from-motion,”IEEE Transactions on Image Processing, vol. 32, pp. 6441–6456, 2023
work page 2023
Show all 38 references
-
[8]
Tc-sfm: Robust track-community-based structure-from-motion,
L. Wang, L. Ge, S. Luo, Z. Yan, Z. Cui, and J. Feng, “Tc-sfm: Robust track-community-based structure-from-motion,”IEEE Transactions on Image Processing, vol. 33, pp. 1534–1548, 2024
2024
-
[9]
Learning monocular reactive uav control in cluttered natural environments,
S. Ross, N. Melik-Barkhudarov, K. S. Shankar, A. Wendel, D. Dey, J. A. Bagnell, and M. Hebert, “Learning monocular reactive uav control in cluttered natural environments,” in2013 IEEE International Conference on Robotics and Automation (ICRA), pp. 1765–1772. IEEE, 2013
2013
-
[10]
Deep reinforcement learning of collision-free flocking policies for multiple fixed-wing uavs using local situation maps,
C. Yan, C. Wang, X. Xiang, Z. Lan, and Y . Jiang, “Deep reinforcement learning of collision-free flocking policies for multiple fixed-wing uavs using local situation maps,”IEEE Transactions on Industrial Informat- ics, vol. 18, no. 2, pp. 1260–1270, 2021
2021
-
[11]
Learning high-speed flight in the wild,
A. Loquercio, E. Kaufmann, R. Ranftl, M. M ¨uller, V . Koltun, and D. Scaramuzza, “Learning high-speed flight in the wild,”Science Robotics, vol. 6, no. 59, p. eabg5810, 2021
2021
-
[12]
Collision-avoiding flocking with multiple fixed-wing uavs in obstacle-cluttered environments: A task-specific curriculum-based madrl approach,
C. Yan, C. Wang, X. Xiang, K. H. Low, X. Wang, X. Xu, and L. Shen, “Collision-avoiding flocking with multiple fixed-wing uavs in obstacle-cluttered environments: A task-specific curriculum-based madrl approach,”IEEE Transactions on Neural Networks and Learning Systems, 2023
2023
-
[13]
Collaborative target search with a visual drone swarm: An adaptive curriculum embedded multistage re- inforcement learning approach,
J. Xiao, P. Pisutsin, and M. Feroskhan, “Collaborative target search with a visual drone swarm: An adaptive curriculum embedded multistage re- inforcement learning approach,”IEEE Transactions on Neural Networks and Learning Systems, 2023
2023
-
[14]
Champion-level drone racing using deep reinforcement learning,
E. Kaufmann, L. Bauersfeld, A. Loquercio, M. M ¨uller, V . Koltun, and D. Scaramuzza, “Champion-level drone racing using deep reinforcement learning,”Nature, vol. 620, no. 7976, pp. 982–987, 2023
2023
-
[15]
Learning multi-pursuit evasion for safe tar- geted navigation of drones,
J. Xiao and M. Feroskhan, “Learning multi-pursuit evasion for safe tar- geted navigation of drones,”IEEE Transactions on Artificial Intelligence, 2024
2024
-
[16]
Image-goal nav- igation in complex environments via modular learning,
Q. Wu, J. Wang, J. Liang, X. Gong, and D. Manocha, “Image-goal nav- igation in complex environments via modular learning,”IEEE Robotics and Automation Letters, vol. 7, no. 3, pp. 6902–6909, 2022
2022
-
[17]
Viplanner: Visual semantic imperative learning for local navigation,
P. Roth, J. Nubert, F. Yang, M. Mittal, and M. Hutter, “Viplanner: Visual semantic imperative learning for local navigation,” in2024 IEEE International Conference on Robotics and Automation (ICRA), pp. 5243–5249. IEEE, 2024
2024
-
[18]
Llama: Open and efficient foundation language models,
H. Touvron, T. Lavril, G. Izacard, X. Martinet, M.-A. Lachaux, T. Lacroix, B. Rozi `ere, N. Goyal, E. Hambro, F. Azharet al., “Llama: Open and efficient foundation language models,”arXiv preprint arXiv:2302.13971, 2023
2023 arXiv
-
[19]
Learning transferable visual models from natural language supervision,
A. Radford, J. W. Kim, C. Hallacy, A. Ramesh, G. Goh, S. Agarwal, G. Sastry, A. Askell, P. Mishkin, J. Clarket al., “Learning transferable visual models from natural language supervision,” inInternational Conference on Machine Learning (ICML), pp. 8748–8763. PmLR, 2021
2021
-
[20]
Navid: Video-based vlm plans the next step for vision- and-language navigation,
J. Zhang, K. Wang, R. Xu, G. Zhou, Y . Hong, X. Fang, Q. Wu, Z. Zhang, and H. Wang, “Navid: Video-based vlm plans the next step for vision- and-language navigation,”arXiv preprint arXiv:2402.15852, 2024
2024 arXiv
-
[21]
Flame: Learning to navigate with multimodal llm in urban environments,
Y . Xu, Y . Pan, Z. Liu, and H. Wang, “Flame: Learning to navigate with multimodal llm in urban environments,” inProceedings of the AAAI Conference on Artificial Intelligence (AAAI), vol. 39, no. 9, pp. 9005– 9013, 2025
2025
-
[22]
Mapnav: A novel memory represen- tation via annotated semantic maps for vlm-based vision-and-language navigation,
L. Zhang, X. Hao, Q. Xu, Q. Zhang, X. Zhang, P. Wang, J. Zhang, Z. Wang, S. Zhang, and R. Xu, “Mapnav: A novel memory represen- tation via annotated semantic maps for vlm-based vision-and-language navigation,”arXiv preprint arXiv:2502.13451, 2025
2025 arXiv
-
[23]
Vlfm: Vision- language frontier maps for zero-shot semantic navigation,
N. Yokoyama, S. Ha, D. Batra, J. Wang, and B. Bucher, “Vlfm: Vision- language frontier maps for zero-shot semantic navigation,” in2024 IEEE International Conference on Robotics and Automation (ICRA), pp. 42–
-
[24]
V oronav: V oronoi-based zero-shot object navigation with large language model,
P. Wu, Y . Mu, B. Wu, Y . Hou, J. Ma, S. Zhang, and C. Liu, “V oronav: V oronoi-based zero-shot object navigation with large language model,” arXiv preprint arXiv:2401.02695, 2024
2024 arXiv
-
[25]
Vl-nav: Real- time vision-language navigation with spatial reasoning,
Y . Du, T. Fu, Z. Chen, B. Li, S. Su, Z. Zhao, and C. Wang, “Vl-nav: Real- time vision-language navigation with spatial reasoning,”arXiv preprint arXiv:2502.00931, 2025
2025 arXiv
-
[26]
Nr-slam: Non-rigid monocular slam,
J. J. G. Rodr ´ıguez, J. M. Montiel, and J. D. Tard ´os, “Nr-slam: Non-rigid monocular slam,”IEEE Transactions on Robotics, 2024
2024
-
[27]
Npe-drl: Enhancing perception constrained obstacle avoidance with non-expert policy guided reinforcement learning,
Y . Zhang, C. Yan, J. Xiao, and M. Feroskhan, “Npe-drl: Enhancing perception constrained obstacle avoidance with non-expert policy guided reinforcement learning,”IEEE Transactions on Artificial Intelligence, 2024
2024
-
[28]
Partially-observable monocular autonomous navigation for uav through deep reinforcement learning,
Y . Zhang, K. H. Low, and C. Lyu, “Partially-observable monocular autonomous navigation for uav through deep reinforcement learning,” inAIAA AVIATION 2023 Forum, p. 3813, 2023
2023
-
[29]
Learning cross-modal visuo- motor policies for autonomous drone navigation,
Y . Zhang, J. Xiao, and M. Feroskhan, “Learning cross-modal visuo- motor policies for autonomous drone navigation,”IEEE Robotics and Automation Letters, 2025
2025
-
[30]
Object goal navigation using goal-oriented semantic exploration,
D. S. Chaplot, D. P. Gandhi, A. Gupta, and R. R. Salakhutdinov, “Object goal navigation using goal-oriented semantic exploration,”Advances in Neural Information Processing Systems (NeurIPS), vol. 33, pp. 4247– 4258, 2020
2020
-
[31]
Aeri- alvln: Vision-and-language navigation for uavs,
S. Liu, H. Zhang, Y . Qi, P. Wang, Y . Zhang, and Q. Wu, “Aeri- alvln: Vision-and-language navigation for uavs,” inProceedings of the IEEE/CVF International Conference on Computer Vision (ICCV), pp. 15 384–15 394, 2023
2023
-
[32]
Citynav: Language-goal aerial navigation dataset with geographic information,
J. Lee, T. Miyanishi, S. Kurita, K. Sakamoto, D. Azuma, Y . Matsuo, and N. Inoue, “Citynav: Language-goal aerial navigation dataset with geographic information,”arXiv preprint arXiv:2406.14240, 2024
2024 arXiv
-
[33]
Openfly: A versatile toolchain and large-scale benchmark for aerial vision-language navigation,
Y . Gao, C. Li, Z. You, J. Liu, Z. Li, P. Chen, Q. Chen, Z. Tang, L. Wang, P. Yanget al., “Openfly: A versatile toolchain and large-scale benchmark for aerial vision-language navigation,”arXiv preprint arXiv:2502.18041, 2025
2025
-
[35]
Vision-and-language navigation: Interpreting visually-grounded navigation instructions in real environments,
P. Anderson, Q. Wu, D. Teney, J. Bruce, M. Johnson, N. S ¨underhauf, I. Reid, S. Gould, and A. Van Den Hengel, “Vision-and-language navigation: Interpreting visually-grounded navigation instructions in real environments,” inProceedings of the IEEE Conference on Computer Vision...
2018
-
[36]
Prox- imal policy optimization algorithms,
J. Schulman, F. Wolski, P. Dhariwal, A. Radford, and O. Klimov, “Prox- imal policy optimization algorithms,”arXiv preprint arXiv:1707.06347, 2017
2017 arXiv
-
[37]
An improved artificial potential field method for path planning and formation control of the multi-uav systems,
Z. Pan, C. Zhang, Y . Xia, H. Xiong, and X. Shao, “An improved artificial potential field method for path planning and formation control of the multi-uav systems,”IEEE Transactions on Circuits and Systems II: Express Briefs, vol. 69, no. 3, pp. 1129–1133, 2021
2021
-
[38]
Blip: Bootstrapping language-image pre-training for unified vision-language understanding and generation,
J. Li, D. Li, C. Xiong, and S. Hoi, “Blip: Bootstrapping language-image pre-training for unified vision-language understanding and generation,” inInternational Conference on Machine Learning (ICML), pp. 12 888– 12 900. PMLR, 2022
2022
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.