Next Article in Journal
Robust Extrinsic Calibration of Multiple RGB-D Cameras with Body Tracking and Feature Matching
Next Article in Special Issue
An Intra-Subject Approach Based on the Application of HMM to Predict Concentration in Educational Contexts from Nonintrusive Physiological Signals in Real-World Situations
Previous Article in Journal
Semi-Supervised Joint Learning for Hand Gesture Recognition from a Single Color Image
Previous Article in Special Issue
Indirect Feedback Measurement of Flow in a Water Pumping Network Employing Artificial Intelligence
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Joint Multimodal Embedding and Backtracking Search in Vision-and-Language Navigation

Department of Computer Science, Kyonggi University, Suwon-si 16227, Korea
*
Author to whom correspondence should be addressed.
Sensors 2021, 21(3), 1012; https://doi.org/10.3390/s21031012
Submission received: 31 December 2020 / Revised: 29 January 2021 / Accepted: 30 January 2021 / Published: 2 February 2021
(This article belongs to the Special Issue Artificial Intelligence and Sensors)

Abstract

:
Due to the development of computer vision and natural language processing technologies in recent years, there has been a growing interest in multimodal intelligent tasks that require the ability to concurrently understand various forms of input data such as images and text. Vision-and-language navigation (VLN) require the alignment and grounding of multimodal input data to enable real-time perception of the task status on panoramic images and natural language instruction. This study proposes a novel deep neural network model (JMEBS), with joint multimodal embedding and backtracking search for VLN tasks. The proposed JMEBS model uses a transformer-based joint multimodal embedding module. JMEBS uses both multimodal context and temporal context. It also employs backtracking-enabled greedy local search (BGLS), a novel algorithm with a backtracking feature designed to improve the task success rate and optimize the navigation path, based on the local and global scores related to candidate actions. A novel global scoring method is also used for performance improvement by comparing the partial trajectories searched thus far with a plurality of natural language instructions. The performance of the proposed model on various operations was then experimentally demonstrated and compared with other models using the Matterport3D Simulator and room-to-room (R2R) benchmark datasets.

1. Introduction

Driven by the rapid growth of computer vision and natural language processing technologies, in recent years there has been a growing interest in multimodal intelligent tasks that require the ability to concurrently understand various forms of input data such as images and text. Some of the typical multimodal intelligent tasks are vision question answering (VQA) [1] that generate answers to natural language questions on the image presented, visual dialog [2] that holds a meaningful question and answer (Q&A) dialog on the input image, and image/video captioning that generates texts describing the contents of the input image or video. More advanced multimodal intelligent tasks have also been presented, including embodied question answering (EQA) [3], assuming an embodied agent moving around in a virtual environment [3], interactive question answering (IQA) [4], cooperative vision and dialog navigation (CVDN) [5], remote embodied visual referring expression in real indoor environments (REVERIE) [6], and vision and language navigation (VLN) [7].
Among these multimodal intelligent tasks, we will explore VLN tasks, in which an agent moving in a three-dimensional virtual environment is requested to navigate to a particular location following natural language instructions. Consider an agent placed in a 3D virtual indoor environment generated by the Matterport3D Simulator [8]. As shown in the example presented in Figure 1, a VLN task requires the agent to progress to the target position, relying on the natural language instructions and visual cues of the environment corresponding to the agent’s vision. For model training and testing, we considered room-to-room (R2R) [7] datasets. Datasets for each navigation task include an optimal path from a specific initial position to the target position within the environment and a set of three different natural language instructions that describe the optimal path.
As shown in Figure 1, the natural language instructions for a VLN task contain instructions that request the agent to perform high-level actions such as “walk down” and “continue down” around various landmarks (e.g., bathroom and stairs) within the environment. Therefore, the VLN agent needs to solve many problems: it needs to acquire knowledge of its location in the current environment to determine the next action; it needs to identify the landmark in the input image mentioned in the instruction; and it needs to choose the low-level action to implement the high-level action in accordance with the instruction. In particular, the agent should be able to perform alignment and grounding of multimodal input data to understand the natural language instructions coherently in relation to the real-time input images.
Because most natural language instructions provide only partial descriptions of the trajectory to the target position, the agent encounters difficulties in understanding the instructions unless they are efficiently combined with visual features using the alignment and grounding feature. In VLN-related studies [7,9,10,11,12,13,14,15,16,17,18,19,20,21], various attention mechanisms, such as visual or textual attention, are employed to ensure the alignment and grounding between natural language instruction and input images. However, these attention-based VLN models are trained only to learn the association between natural language instructions and images with a limited number of R2R datasets; moreover, they have difficulties acquiring broader general knowledge of the relationship between natural language instruction and images. Therefore, it is a great challenge for attention-based VLN models to extract sufficient context from multimodal input data, including natural language instructions and images, to make real-time action decisions. To address this drawback, researchers proposed transformer-based pretrained models [20,21]. Unlike attention-based models, pretrained models are equipped with feature aligning natural language instructions and images, trained with attended masked language modeling (AMKM) and action prediction (AP) tasks based on a transformer neural network before being used for VLN tasks. However, current pretrained models have insufficient capacity to reflect the wealth of statuses and actions experienced by the agent in the past.
Effective path planning and action selection strategies for reaching the target position are crucial for executing VLN tasks. Most VLN-related studies [7,9,10,11,12,13,14,15,16,17,18,19,20,21] applied search techniques that rely on local scoring of candidate actions, such as greedy local and beam searches. In the case of the greedy area search, the search speed is increased because the search range is limited; however, its success rate is low because it is difficult to return to the original path once a wrong path is selected. Beam search, developed in an attempt to overcome this problem, has a higher task success rate compared with the greedy area search owing to the concurrent search of several candidate paths in parallel. However, its search efficiency is low considering the total length of the search path to be explored in parallel. It is also associated with implementation problems because one agent cannot simultaneously search multiple paths in parallel in an actual navigation environment.
In an effort to overcome the limitations of previous studies for solving VLN tasks, we propose the joint multimodal embedding and backtracking search (JMEBS), a novel deep neural network model. The proposed model uses a transformer-based, joint multimodal embedding module to obtain a text context that is efficient for action selection based on natural language instructions and real-time input images. Unlike the conventional transformer-based pretrained models, the JMEBS model uses multimodal context at each time step that connects the current image to natural language instructions, and temporal context that contains the agent’s past statuses and actions. One of its salient features is that the context information extracted by the module can be integrated into various path planning and action selection strategies. It is also equipped with a backtracking-enabled local search feature designed to improve the task success rate and optimize the navigation path based on the local and global scores related to candidate actions. Additionally, a global scoring method is used to compare partial trajectories searched with various natural language instructions. In summary, our contributions include:
  • A novel deep neural network model, with joint multimodal embedding and backtracking search for VLN tasks.
  • Rich context utilization based on a transformer-based multimodal embedding module and a temporal contextualization module.
  • A backtracking-enabled greedy local search algorithm to improve the success rate and optimize the path.
  • A novel global scoring method to monitor task progress by comparing the partial trajectories searched thus far with a plurality of natural language instructions.
  • State-of-the-art results on the VLN task.
The remainder of this article is organized as follows: Section 2 presents an overview of the related literature. Section 3 provides a detailed explanation of the design of the proposed JMEBS model. Section 4 presents the JMEBS implementation environment and the results of various experiments using R2R benchmark datasets. Section 5 draws conclusions and presents directions for future research.

2. Related Works

In a study on VLN tasks [7], a relatively simple deep neural network model of the sequence-to-sequence (Seq2Seq) type was proposed, in which an action sequence was output from two input sequences with input video stream and natural language instructions, respectively. A few other VLN-related studies [9,15,16] presented methods to solve the problem of insufficient R2R datasets for training VLN models. They undertook various data augmentation techniques, including the development of a speaker module to generate additional training data [9], new training data through environment dropout (eliminating selected objects from the environment) [15], and more sophisticated task data by concatenating the existing R2R data [16].
Researchers have attempted to understand the association between natural language instructions and real-time input images in a range of studies on VLN tasks. One of these attempts resulted in an attention mechanism for co-grounding multimodal input data [9,10,11]. In particular, Object-and-Action Aware Model (OAAM) [10] separated object-centered instruction from action-centered one, and then matches them to their own counterpart visual perception and action orientation. Another work [11] proposed a relationship graph for modeling the inter-modal relationships between natural language instruction and input image, and the intra-modal relationships among visual entities. These models used an end-to-end training to train the association between the words appearing in natural language instructions and input images. However, only R2R datasets with limited range were used. This training mechanism is thus unsuitable for training comprehensive vision–language knowledge. Another drawback of the models is the use of a recurrent neural network to model the sequence of words used in natural language instructions, which is unsuitable for parallel processing. To overcome these limitations, some researchers developed pretrained models [20,21] in which natural language instructions and images for the VLN task are embedded together with large-scale benchmark datasets in addition to R2R datasets. VisualBERT [22], Vision-and-Language BERT (ViLBERT) [23], Visual-Linguistic BERT (VL-BERT) [24], and UNiversal Image-TExt Representation (UNITER) [25], are pretrained models applicable to various vision–language tasks. There are also models pretrained specifically for VLN tasks [20,21]. These VLN-specific models have a simple structure that immediately selects one of the candidate actions because they use only the multimodal context of the concurrently embedded data extracted according to natural language instructions and input images. Therefore, these pretrained VLN models cannot sufficiently use the temporal context reflecting the statuses and actions experienced by the agent in the past, nor can they deviate from the built-in greedy local search to combine with other search approaches. To overcome this limitation, we developed the JMEBS model using the pretrained model proposed in [20] as a joint embedding module to obtain a multimodal context. By adding the temporal contextualization module, the JMEBS model is designed to enable the agent to select actions by taking into account its own past statuses and actions. Moreover, by adopting the pretrained model of [20] as an independent module, the JMEBS model can be easily combined with a novel greedy local search capable of conducting backtracking actions.
Conversely, one of the most important issues associated with the solution of a VLN task is an efficient path planning and action selection strategy. In a VLN task, the agent is not explicitly given the target position; it is given only the natural language instructions that provide directions to the target position. Hence, the agent needs to perform efficient path planning and action selection strategies to reach the target position based on the real-time input image and natural language instructions. In a VLN task, a graphic map is predefined for each environment, and the agent should move from one node to the next to navigate to the target position. Therefore, in previous studies, greedy local [7,9,10] and beam searches [14], which were suitable for graph searches, were mostly used for VLN tasks. In general, a greedy local search—a technique for searching the node with the highest local score among adjacent nodes of the current node at each time step—has high-search efficiency owing to its narrow search range. However, it has a high-task failure rate once a false path is selected during the search. Beam search, developed in an attempt to overcome the drawback of greedy local search, has a higher task success rate compared to the greedy area search owing to the concurrent search of k-number of candidate paths in parallel. However, it has low practicability given that one agent cannot simultaneously search multiple paths in parallel in an actual navigation environment, and low search efficiency, considering the total length of the search path to be explored in parallel.
Attempts to overcome these drawbacks of greedy local search and beam search have been made in two VLN-related studies [13,14]. In [13], an extended local search, including rollback action, was proposed, using a progress monitor for the position of each action with respect to the target position as heuristics for search. In [14], a new frontier-aware search with a backtracking (FAST) search algorithm or FAST navigator was proposed that upgraded the efficiency of the beam search. The FAST navigator can backtrack if it detects a mistake by simultaneously comparing partial paths of different lengths using local and global information. Going a step further, the proposed model JMEBS employs a backtracking-enabled greedy local search (BGLS), which is similar to rollback [13] or FAST [14] in that the agent is backtracking-enabled, but uses a different local and global scoring strategy for action selection. The JMEBS model performs local scoring using the multimodal context extracted from the natural language instruction, real-time image, and the temporal context reflecting the agents’ experience over time. Furthermore, its global scoring involves a comparison of all partial trajectories of each point visited from the initial position to the current position using a new scoring function.

3. Materials and Methods

3.1. Problem Description

The VLN is a task in which the agent navigates to an unknown target position following natural language instructions. It is assumed that the real-time input of the panoramic image of the environment is provided to the agent that performs the task. Figure 2 illustrates the VLN task environment.
As shown in Figure 2 (top), a graphic topological map (G) consisting of nodes (waypoints) and edges (connections) is defined at each position visited by the agent. The VLN server controls the agent to navigate only on G. In this way, it is not exposed to the agent that determines each navigation action by perceiving the environment. As shown in Figure 2 (bottom), the agent must estimate its own position and the composition of the environment by relying on the 360° panoramic image (observation Ot) acquired at the current position (state St) at each time step. Accordingly, the panoramic image is divided into 36 partial images of equal size, each of which is a candidate action. If the agent selects and executes any of these candidate actions, the management system moves the agent to the node closest to the chosen direction on G. The agent navigates by repeating this process and performs the “stop” action at the position predicted as the goal. If the agent’s final position is within 3 m of the target position, the management system marks the task as successful.

3.2. Proposed Model

The proposed model JMEBS performs the local scoring of a candidate action based on the multimodal context extracted from the natural language instruction and panoramic image using the pretrained joint embedding module and temporal contextualization reflecting past statuses and actions. Additionally, it performs global scoring to determine the need for backtracking by comparing the natural language instructions describing the entire trajectory from the initial to the final position with the partial trajectories up to the current position.
Accordingly, the JMEBS model is largely divided into a local scoring network, a global scoring network, and an action selection network, as shown in Figure 3. The global scoring network gives a local score to each of the candidate actions based on multimodal and temporal contexts. The agents select one of the candidate actions based on the local scores given to them and navigate. Finally, the global scoring network is used to determine the need for backtracking by comparing the natural language instructions describing the entire trajectory with the partial trajectories up to the current position.
The local scoring network consists of three stages: multimodal embedding, temporal contextualization, and local scoring. In the multimodal embedding stage, panoramic images and natural language instructions are embedded to enable the use of real-time input data. The joint multimodal embedding module proposed in this study is used in the multimodal embedding process to enable information exchange between the image and natural language modes. This process involves visual information embedding based on natural language instruction, and natural language embedding based on visual information. The temporal contextualization stage is composed of a context decoding module for updating temporal context and a co-attention module for detecting the focus area from the input data using the context feature. In the context updating stage, a new context h t is set using the input data (visual feature and previous action) delivered to the agent at each time step t from the environment and the previous context h t 1 . The co-attention stage includes the attention network for each mode that determines the area to focus on according to the instruction and image received based on context. Finally, in the local scoring stage, the actual candidate actions are rated. A detailed explanation of the local scoring stage is provided in Section 3.3.
The optimal action to take at the current time step ( t ) decided in the local scoring stage is stored in the trajectory memory wherein the entire trajectory sequence from the initial to the target position is stored. Furthermore, the global scoring network is used to determine whether to execute the selected action or rollback. The global scoring network is subdivided into three stages: the trajectory encoding stage to encode the stored trajectory; the instruction decoding stage to generate natural language instructions to describe the trajectory; and the global scoring stage that requires a process step to check the trajectories generated thus far against the ground truth trajectories. Given that the agent is not provided the ground truth trajectories owing to the nature of the VLN tasks, scoring is performed by generating the instructions describing the trajectories executed up to the current position and checking them against the ground truth instructions. A detailed explanation of the local scoring stage is provided in Section 3.4.

3.3. Local Scoring

Figure 4 illustrates the local scoring network that rates candidate actions based on multimodal and temporal contexts. At each time step t , the agent takes action according to the instruction I that describes the entire trajectory, panoramic image O t , previous action   a t 1 , and candidate actions a t c a n d to choose from at the current position. The local scoring network is subdivided into the multimodal embedding stage, temporal contextualization stage, and local scoring stage. The local scoring process comprises distinct processes for the generation of instruction features (red line) and visual features (blue line).
First, in the multimodal embedding stage, instruction I performs word embedding using pretrained BERT and positional embedding, including the positional information of the word. For the panoramic image, the convolutional neural network (CNN) visual features are based on the pretrained ResNet-152 and the agent’s orientation feature. The institutional embedding dataset for each mode is input as the joint multimodal embedding module so that embedding features can be generated based on intermodal data exchange.
Figure 5 illustrates the architecture of the joint multimodal embedding of the JMEBS. The joint embedding module is composed of a mode-specific embedding layer and transformer layers for intermodal exchange. The embedding layer accommodates the text embedder to embed the instructions and the visual embedder for processing the panoramic image. Textual embedding is performed to generate the embedding feature of each word by concatenating the BERT embedding data ( w n ) of each word of instruction I and the positional embedding ( P w n ) of each word.
The visual embedding process uses two types of features: the image feature ( v n ) of each of the 36 partial images extracted from the panoramic image with a CNN and the orientation feature ( P v n , orientation feat) viewed from the agent’s current position. The orientation feature is the value corresponding to each of the 36 partial images, that is, a 128-dimensional directional vector based on real numbers in the form of s i n φ ; c o s φ ;   s i n θ ; cos θ , where φ is the orientation of the horizontal field-of-view (heading), and θ is the vertical field-of-view (elevation). In this case, “ ; ” denotes the features that are used in the concatenated state. Conclusively, the orientation feature and CNN image features are fused into the visual embedding feature depending on the agent’s current orientation. Finally, the embedded text string and visual feature undergo intermodal data exchange through the co-transformer module (gray area), resulting in the acquisition of the embedded textual feature reflection image data and the visual feature reflecting the natural language instruction data.
The proposed model JMEBS contains a temporal contextualization module, as shown in Figure 4. As mentioned previously, the temporal contextualization stage context decoding module for context updating and the co-attention module for detecting the focus area from the input data use the context feature. The co-attention module contains a mode-specific attention (visual or textual attention) network for searching visual and textual features. The context decoding module is a network based on the long short-term memory (LSTM) used to reflect the sequence feature at each time step; it enables the generation of a new context ( h t ) that reflects the current input data by inputting the visual feature, previous action, and previous temporal context ( h t 1 ), as expressed by Equation (1):
h t = L S T M f ˜ t v i s ;   f t 1 a c t i o n ,   h t 1
Herein, the input visual feature should be updated using the time-step data best suited for the current status instead of the embedded visual feature. Therefore, visual attention is used as an element of the co-attention module, thereby applying the soft-attention mechanism expressed by Equation (2) to the existing visual feature ( f t v i s ) with the help of the previous temporal context (   h t 1 ). This leads to the generation of attended visual features ( f ˜ t v i s ) reflecting the actual temporal context, where g denotes a multilayer neural network and α t v i s denotes the textual attention weight for the visual feature:
z t vis = W v h t 1 g f t vis ,   α t vis = softmax z t vis , f ˜ t vis = α t vis f t vis  
The next process is sentence encoding in which the embedding feature of each word extracted based on the joint embedding process is subjected to the LSTM model to generate an instruction feature ( f i n s t ) that reflects the word sequence feature. The instruction feature generated is used for candidate action scoring. It is designed to perform textual attention according to the current status to select the instructed action that corresponds to a specific focus area. The textural attention process is expressed by Equation (3), wherein the focus word is selected based on the images up to the current time step and the current context ( h t ), where α t i n s t denotes the textual attention weight:
z t inst = W x h t ,   α t inst = softmax z t inst f ˜ inst = α t inst f inst
Subsequently, a new situation ( h ˜ t ) is generated, with the entire temporal context ( h t ) and the attended instruction feature ( f ˜ inst ) reflected in it, as expressed by Equation (4). This is the final process for generating the core feature, with all word data most closely associated with the current status and action decisions reflected in it. To compute the predefined candidate action at each position of the agent ( f t c a n d ) and the weight of each action using the situation data ( h ˜ t ) , the same soft-attention process is executed as in Equation (3):
h ˜ t = t a n h W f ˜ i n s t ; h t
Using the attended candidate action feature f ˜ t c a n d , the local score logit for a t k is computed based on Equation (5). In this candidate action scoring from the local perspective based on the agent’s current input data and situation, the action with the highest score is selected as the next action:
L t a t k = s o f t m a x W a h ˜ t   f ˜ t c a n d
The function L o s s L S N for the loss of the local scoring network is defined as the cross-entropy loss of action decision, as expressed by Equation (6), where y t G T denotes the ground truth action and p t k denotes the action probability for each candidate action a t k .
L o s s L S N = t   =   1 T y t G T l o g p t k

3.4. Global Scoring

The global scoring network illustrated in Figure 6 determines the need for backtracking from a global perspective. The global scoring network operates in sync with trajectory memory ( M ), which stores the trajectories executed by the agent to reach the current position, as expressed by Equation (7):
τ t = s 0 , a 0 ,   s t ,   s k a k s k + 1   f o r   0 k t
An R2R dataset contains three different natural language instructions that describe the same trajectory of each VLN task. In the global scoring network, the extent to which the current trajectory is advancing toward the target position is assessed by checking the trajectories τ t executed thus far against natural language instructions I k I ,   k = 1 , 2 , 3 . To enable the comparison of the trajectories τ t having a different mode (visual mode) with the natural language instructions I (textual mode), the speaker model [9] is used to transform τ t to I t . The final global scores are obtained by computing the similarity of the transformed instructions I t to the original instructions I k I ,   k = 1 , 2 , 3 . To calculate the similarities among natural language instructions, we used dynamic time warping (DTW) in which a natural language instruction is considered a sequence of words, and the similarity between natural language instructions is calculated by applying the method of calculation of the similarity between two time-series data.
The global scoring network of JMEBS consists of three stages: trajectory encoding of the current trajectory τ t , instruction decoding to transform the current trajectory to natural language instruction I t , and the final global scoring calculation. First, the trajectory τ t is encoded as an image sequence-type trajectory vector f t t r a j with the encoder LSTM, and then retransformed with an LSTM-based decoder to natural language instruction I t to match the trajectories executed to reach the current position. In the process of instruction decoding, we used the speaker model [9] with bidirectional LSTM (bi-LSTM) pretrained based on the instruction data in the existing R2R datasets.
In the final global scoring stage, the global score G t   of the action a t is calculated by comparing the trajectory transformed to the natural language I t with the three natural language instructions I k I ,   k = 1 , 2 , 3 provided by the R2R datasets, as expressed by Equation (8):
G t a t 1 = 1 3 k   =   1 3 D T W I k ,   I t
The loss function L o s s G S N of the global scoring network is defined as the function of cross-entropy loss incurred in the course of trajectory encoding and instruction decoding, as expressed by Equation (9), where z t G T denotes the ground truth word, and w k denotes the word probability for each candidate word constituting the instruction   I .
L o s s G S N = t   =   1 T z t G T l o g w k

3.5. Backtracking-Enabled Greedy Local Search

The action selection strategy described in Algorithm 1 represents the BGLS algorithm used in JMEBS. In Algorithm 1, the algorithm is expressed as a function that receives input data ( O t = image, I = natural language instruction, a t 1 = previous action) and transforms them into output data ( a ^ t = the optimal action at the current position).
Algorithm 1. Pseudocode of backtracking-enabled greedy local search (BGLS) algorithm.
BGLS( O t , I ,   a t 1 )
1:  τ t = s 0 ,   s 1 , , s t   G e t _ T a r j c t o r y M
2: if ( G o a l s t ) then return a s t o p
3:  G t a t 1 G l o b a l _ S c o r i n g ( a t 1 ,   τ t )
4: if ( G t a t 1 G t 1 a t 2 ) then
5:    a b a c k B a c k t r a c k i n g s t
6:    τ ^ t + 1 E x p a n d _ T r a j e c t o r y ( τ t ,   s ^ t + 1 )
7:    M U p d a t e _ M e m o r y M , τ t + 1
8:   return a b a c k
9:  end if
10: for each possible action a t k at state s t do
11:   L t a t k L o c a l _ S c o r i n g a t k
12: end for
13:  a ^ t a r g m a x k K L t a t k
14:  s ^ t + 1 U p d a t e _ S t a t e s t , a ^ t
15:  τ ^ t + 1 E x p a n d _ T r a j e c t o r y ( τ t ,   s ^ t + 1 )
16:  M U p d a t e _ M e m o r y M , τ t + 1
17: return a ^ t
First, the trajectories executed thus far τ t = s 0 , a 0 ,   ,   s t are retrieved from trajectory memory M . If the current status s t is in the target position range G o a l S t , the stop action a s t o p is returned (lines 1–2 in Algorithm 1). Otherwise, the global scoring G l o b a l _ S c o r i n g a t 1 ,   τ t   for the previous action a t 1 is performed based on all the trajectories executed up to that time instant, τ t = s 0 , a 0 ,   ,   s t (line 3 in Algorithm 1). If the global score of the previous action a t 1 has not improved compared with its previous action a t 2 , that is, G t a t 1 G t 1 a t 2 , the backtracking decision B a c k t r a c k i n g s t is made to execute a rollback action a b a c k   to the previous status s t 1 , and E x p a n d _ T r a j e c t o r y τ t ,   s t + 1 , that is, the expansion of the new trajectory τ t + 1 to the status s t + 1 and U p d a t e _ M e m o r y M ,   τ t + 1 are decided, and the rollback action a b a c k is returned (lines 4–8 in Algorithm 1). If the global score of the previous action a t 1 has improved compared with its previous action a t 2 , that is, G t a t 1 > G t 1 a t 2 , the local score of each candidate action a t k available at the current status s t is calculated ( L o c a l _ S c o r i n g a t k ), and the action that has the highest local score a ^ t is selected (lines 9–10 in Algorithm 1). The new status s ^ t + 1 , expanded as a result of the execution of the selected action a ^ t , is updated to the new trajectory τ ^ t + 1   E x p a n d T r a j e c t o r y τ t ,   s ^ t + 1 ; the trajectory memory is updated U p d a t e M e m o r y M ,   τ t + 1 ; and the action is returned (lines 11–14 in Algorithm 1).
As explained earlier, the new BGLS search algorithm available for both local and global scoring has a higher search efficiency compared with the conventional beam search algorithms and a higher task success rate compared with conventional greedy local search algorithms that have no possibility of backtracking.

4. Experiments

4.1. Dataset and Model Training

We conducted five different experiments to analyze the performance of the proposed model JMEBS using R2R datasets and the Matterport3D simulation environment. R2R [7] is a navigation dataset established by providing a trajectory for people to navigate the Matterport3D indoor environment from the starting point of a specific destination, and by collecting the natural language instructions that describe the trajectory. An R2R dataset contains three different natural language instructions describing each trajectory, and is configured to have training and validation data at a ratio of 2 to 1. JMEBS is implemented with the Python deep learning library Pytorch in the Ubuntu 16.04 LTS environment mounted with a Geforce GTX 1080Ti graphics processing unit. The performance assessment metrics used for the experiments are the navigation error (NE, m), success rate (SR, %), success rate weighted by path length (SPL, %), and trajectory length (TL, m). NE results are expressed as the mean distance between the agent’s final arrival point and the target location. SR represents the percentage of agent’s final positions less than 3m away from the target goal position. SPL considers the path length and success rate. The mean distance can be calculated using Equation (10):
1 N i   =   1 N S i l i m a x p i ,   l i
For the model training, the learning rate was set to 0.1, the optimizer was the stochastic gradient descent (SGD), and the epoch was set to 50,000.

4.2. Experiments

The first experiment aimed to prove the positive effect of the joint embedding textual and visual features (JETVF) employed in the proposed model. For this experiment, the JETVF are compared in three different conditions: (i) without joint embedding features (w/o JEF), (ii) only with joint embedding visual features (JEVF), and (iii) and only with joint embedding textual features (JETF). Figure 7a–d show the module w/o JEF, JEVF, JETF, and JETVF, respectively. The experimental results are presented in Table 1 and Figure 8.
The results presented in Table 1 show that the textual and visual features (JETVF) of JMEBS outperformed all other embedding features. Similarly, the case without joint embedding features (w/o JEF) was outperformed by all other cases. The case that used JETF generally scored slightly higher than the case that only used the visual features (JEVF). These findings verified the positive effect of joint multimodal embedding features on VLN tasks.
Figure 8 illustrates the epoch-dependent performance changes in relation to the use of different joint-embedding features. Figure 8a–c represent the performance levels measured by the NE, SR, and SPL, respectively. In the results of this experiment, the JETVF used in the JMEBS model had the lowest NE and highest SR and SPL values. Additionally, JETVF, that is, the case using both text and visual features, showed faster performance convergence than the other cases.
The second experiment was conducted to prove the positive effect of the attended visual textual action module (AvtAM), the temporal contextualizing module of the proposed model JMEBS. For this experiment, three different implementations of the temporal contextualizing module were compared, as shown in Figure 9. These included the (a) attended visual context module (AvCM (A), (b) attended textual context module (AtCM), and (c) the attended visual–textual action module (AvtAM). Table 2 outlines the experimental results.
The results presented in Table 2 show that AvCM that uses only the visual features (image) to update the temporal context outperformed AtCM that uses only the textual features (instruction) to update the temporal context. Furthermore, AvtAM, the model with the multimodal (visual and textual) attention network used in the model JMEBS, generally scored better than the other models. Conclusively, the temporal contextualizing method (AvtAM) proposed in this study was proven to yield performance improvements.
The third experiment was conducted to prove the superiority of the dynamic time warping (DTW) with triple instructions, the global scoring method used in the proposed model JMEBS. We used the Levenshtein distance (LD) and DTW to measure the similarity of natural language instruction measurements. The partial trajectories executed thus far were checked against (i) single instruction and triple instructions. Table 3 outlines the results of the experiment.
The experimental results in Table 3 show that the triple instructions in both LD and DTW, i.e., LD with triple instructions and DTW with triple instructions, outperformed their single-instruction counterparts in global scoring. Additionally, comparing natural language instructions with word sequences showed that DTW slightly outperformed LD. These research findings verified the superiority of the DTW with triple instructions global scoring method used in the proposed model JMEBS.
The fourth experiment was conducted to prove the search efficiency of the BGLS algorithm proposed in this study. In this experiment, three algorithms were compared: greedy local search, beam search, and BGLS. In the case of the beam search, the number of parallel search trajectories K was varied and took the values of 10, 20, and 30. Table 4 outlines the results of the experiment.
The experimental results in Table 4 show that the search algorithm BGLS proposed in this study has a lower SR than the beam search variations, but outperforms them in all other performance scales. This proves the higher search efficiency of the BGLS compared with the beam search technique. In addition, BGLS showed an improved performance compared with the conventional greedy local search in terms of the SR and NE. These results are interpreted as the positive effect of the backtracking feature that characterized the BGLS.
The last experiment was conducted to prove the superiority of the proposed JMEBS model by comparing it with conventional VLN models. Table 5 outlines the results of the experiment. Among the models compared, the beam search method was applied to tactical-rewind [14], and the greedy local search method was applied to all other models.
The experimental results in Table 5 show that the proposed JMEBS model outperforms the S-Forcing baseline model [7] by a large margin. For example, JMEBS with backtracking search (BGLS) improves S-Forcing by 35% on success rate (SR), and 33% on success rate weighted by path length (SPL), respectively. Furthermore, our JMEBS model achieves better than or competitive performance against state-of-the-art models. In particular, compared with PREVALENT [20], which is a pretrained multimodal embedding model, JMEBS (Greedy) yields an enhanced performance on SR in both validation-seen and validation-unseen datasets. This result can be interpreted as the positive effect of temporal context used by JMEBS, in addition to the multimodal context. Meanwhile, JMEBS with backtracking search (BGLS) outperforms all models using greedy search, like RCM [18], Self-monitoring [10], Regretful [10], Env-Dropout [15], OAAM [11], and LVERG [12], on success rate. For example, JMEBS (BGLS) improves Regretful [10] by 7% on SR and about 10% on SPL, respectively. On the other hand, although the tactical-rewind model [14] using beam search outperforms other models using greedy local search on SR and NE metrics, it shows worse performance than greedy search-based models and our JMEBS (BGLS) model on SPL because of long search paths. All five types of experiments conducted in this study demonstrated that the proposed JMEBS model leads to significant improvement over existing VLN models.

4.3. Qualitative Analysis

In this study, a qualitative analysis of the proposed JMEBS model was performed on real-life examples of several VLN tasks. Figure 10, Figure 11, Figure 12 and Figure 13 present examples of VLN tasks performed using JMEBS. Each image shows the natural language instruction along with the panoramic image of the agent on the left-hand side and the top-down view of the environment and navigation path on the right-hand side. In particular, the former is marked by current co-attention (textual and visual). The red arrow within the panoramic image represents the agent’s selected navigation action. The textual attention of the natural language instruction and the visual attention of the panoramic image captured by the agent shows that JMEBS has a good perception of the instruction and image areas that require attention at each time step. For example, in steps 2 and 3 in Figure 10, the agent pays attention to the word “left” in the natural language instruction and selects the correct direction by focusing on the left side of the panoramic image. At step 4 in Figure 11, the agent accurately focuses on the area of the “red abstract sculpture” indicated by the natural language instruction and the panoramic image and decides correctly. These results can be interpreted as the high visual–textual alignment and grounding capacity of the JMEBS. Steps 6 and 7 in Figure 13 show an example of the agent’s use of the backtracking feature of BGLS to return to the previous position and take the correct navigation path.
However, JMEBS was observed to pay visual attention to an incorrect image area at step 4 in Figure 11 and step 8 in Figure 13, and textual attention to meaningless tokens, such as the <EOS> and <BOS> mid-path between Figure 10, Figure 11, Figure 12 and Figure 13. These events show that the text–image grounding of JMEBS can be improved further.

5. Conclusions

This study proposed the novel deep neural network model JMEBS as an efficient tool to solve VLN tasks. The proposed model was designed to use the past temporal context along with the multimodal context extracted with the joint multimodal embedding module. Additionally, JMEBS employed BGLS, a novel greedy local search algorithm with a backtracking feature that improved the task success rate and search efficiency. The proposed model also came with a new global scoring method for the comparison of all partial trajectories executed to reach the current position with various natural language instructions. Finally, we verified the superiority of the proposed model by various experiments conducted with R2R benchmark datasets.
However, the current JMEBS yielded a slightly worse performance in “unseen” compared to “seen” environments. Previous studies used various methods to improve model performance in unseen environments, such as environmental dropout [15] and self-supervised imitation learning [18]. In this context, improving the generalizability of the JMEBS model to improve its performance in unseen environments would be an important future research project. Furthermore, as verified in the qualitative assessment, there is still scope for improvement for JMEBS in its ability to align and ground natural language instructions and images, despite its use of a pretrained joint multimodal embedding module. We plan to address the drawbacks of the current version of JMEBS in a follow-up study by exploring various methods that add landmark information perceived in the image to the context generation feature in addition to basic visual features.

Author Contributions

Conceptualization, J.H. and I.K.; methodology, I.K.; software, J.H.; validation, I.K.; formal analysis, J.H.; investigation, I.K.; resources, J.H. and I.K.; writing—original draft preparation, J.H.; writing—review and editing, I.K.; All authors have read and agreed to the published version of the manuscript.

Funding

This work was supported by the Technology Innovation Program (or Industrial Strategic Technology Development Program) (10077538, Development of manipulation technologies in social contexts for human-care service robots) funded by the Ministry of Trade, Industry & Energy (MOTIE, Korea).

Institutional Review Board Statement

Not applicable.

Informed Consent Statement

Not applicable.

Data Availability Statement

The datasets used and/or analyzed during the current study are available from the corresponding author on reasonable request.

Conflicts of Interest

The authors declare no conflict of interest.

Abbreviations

VLN: Vision and language navigation, R2R: room-to-room, VQA: Vision question answering, JMEBS: Joint multimodal embedding and backtracking-enabled search, BGLS: Backtracking-enabled greedy local search, CNN: Convolutional neural network, LSTM: Long short-term memory, BERT: Bidirectional encoder representations from transformers, DTW: Dynamic time warping, LD: Levenshtein distance, AMKM: Attended masked language modeling, AP: Action prediction, NE: Navigation error, SR: Success rate, SPL: Success rate weighted by path length, TL: Trajectory length.

References

  1. Agrawal, A.; Lu, J.; Antol, S.; Mitchell, M.; Zitnick, C.L.; Parikh, D.; Batra, D. VQA: Visual question answering. Int. J. Comput. Vis. 2017, 123, 4–31. [Google Scholar] [CrossRef]
  2. Das, A.; Kottur, S.; Gupta, K.; Singh, A.; Yadav, D.; Moura, J.M.F.; Parikh, D.; Batra, D. Visual dialog. IEEE Trans. Pattern Anal. Mach. Intell. 2019, 41, 1242–1256. [Google Scholar] [CrossRef] [PubMed]
  3. Das, A.; Datta, S.; Gkioxari, G.; Lee, S.; Parikh, D.; Batra, D. Embodied Question Answering. In Proceedings of the IEEE Conference Computer Vision Patt. Recogn. (CVPR), Salt Lake City, UT, USA, 18–22 June 2018; pp. 2054–2063. [Google Scholar]
  4. Gordon, D.; Kembhavi, A.; Rastegari, M.; Redmon, J.; Fox, D.; Farhadi, A. IQA: Visual question answering in interactive environments. In Proceedings of the IEEE Conference Computer Vision Patt. Recogn. (CVPR), Salt Lake City, UT, USA, 18–22 June 2018; pp. 4089–4098. [Google Scholar]
  5. Thomason, J.; Murray, M.; Cakmak, M.; Zettlemoyer, L. Vision-and-dialog navigation. In Proceedings of the International Conference Robot. Learning (CoRL), Osaka, Japan, 30 October–1 November 2019; pp. 394–406. [Google Scholar]
  6. Qi, Y.; Wu, Q.; Anderson, P.; Wang, X.; Wang, W.-Y.; Shen, C.; van den Henglel, A. REVERIE: Remote Embodied Visual Referring Expression in Real Indoor Environments. In Proceedings of the IEEE Conference Computer Vision Patt. Recogn. (CVPR), Online. 14–19 June 2020; pp. 9982–9991. [Google Scholar]
  7. Anderson, P.; Wu, Q.; Teney, D.; Bruce, J.; Johnson, M.; Sünderhauf, N.; Reid, I.; Gould, S.; van den Hengel, A. Vision-and-language navigation: Interpreting visually grounded navigation instructions in real environments. In Proceedings of the IEEE Conference Computer Vision Patt. Recogn. (CVPR), Salt Lake City, UT, USA, 18–22 June 2018; Volume 2. [Google Scholar]
  8. Chang, A.; Dai, A.; Funkhouser, T.; Halber, M.; Nießner, M.; Savva, M.; Song, S.; Zeng, A.; Zhang, Y. Matterport3D: Learning from RGB-D data in indoor environments. In Proceedings of the International Conference 3D. Vision 2017, Qingdao, China, 10–12 October 2017; p. 5. [Google Scholar]
  9. Fried, D.; Hu, R.; Cirik, V.; Rohrbach, A.; Andreas, J.; Morency, L.-P.; Berg-Kirkpatrick, T.; Saenko, K.; Klein, D.; Darrell, T. Speaker–follower models for vision-and-language navigation. arXiv 2018, arXiv:1806.02724. [Google Scholar]
  10. Ma, C.; Lu, J.; Wu, Z.; AlRegib, G.; Kira, Z.; Socher, R.; Xiong, C. Self-monitoring navigation agent via auxiliary progress estimation. In Proceedings of the International Conference Learning Representation. (ICLR), New Orleans, LA, USA, 6–9 May 2019. [Google Scholar]
  11. Qi, Y.; Pan, Z.; Zhang, S.; van den Hengel, A.; Wu, Q. Object-and-Action Aware Model for Visual Language Navigation. In Proceedings of the Europa Conference Computer Vision (ECCV), Glasgow, UK, 23–28 August 2020. [Google Scholar]
  12. Hong, Y.; Rodriguez -O, C.; Qi, Y.; Wu, Q.; Gould, S. Language and Visual Entity Relationship Graph for Agent Navigation. arXiv 2020, arXiv:2010.09304. [Google Scholar]
  13. Ma, C.; Wu, Z.; AlRegib, G.; Xiong, C.; Kira, Z. The regretful agent: Heuristic-aided navigation through progress estimation. In Proceedings of the IEEE Conference Computer Vision Patt. Recogn. (CVPR), Long Beach, CA, USA, 16–20 June 2019. [Google Scholar]
  14. Ke, L.; Li, X.; Bisk, Y.; Holtzman, A.; Gan, Z.; Liu, J.; Gao, J.; Choi, Y.; Srinvasa, S. Tactical rewind: Self-correction via backtracking in vision-and-language navigation. In Proceedings of the IEEE Conference Computer Vision Patt. Recogn. (CVPR), Long Beach, CA, USA, 16–20 June 2019. [Google Scholar]
  15. Tan, H.; Yu, L.; Bansal, M. Learning to navigate unseen environments: Back translation with environmental dropout. In Proceedings of the International Conference North. American Chapter of the Association for Computational Linguistic s (NAACL), Minnesota, MI, USA, 2–7 June 2019; pp. 2610–2621. [Google Scholar]
  16. Jain, V.; Magalhaes, G.; Ku, A.; Vaswani, A.; Ie, E.; Baldridge, J. Stay on the Path: Instruction Fidelity in Vision-and-Language Navigation. In Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics, Florence, Italy, 28 July–2 August 2019; pp. 3674–3683. [Google Scholar]
  17. Wang, X.; Xiong, W.; Wang, H.; Wang, W.Y. Look before you leap: Bridging model-free and model-based reinforcement learning for planned-ahead vision-and-language navigation. Lecture Notes in Computer Science. In Proceedings of the Europa Conference Computer Vision (ECCV), Munich, Germany, 8–14 September 2018; pp. 38–55. [Google Scholar]
  18. Wang, X.; Huang, Q.; Celikyilmax, A.; Gao, J.; Shen, D.; Wang, Y.-F.; Wang, W.-Y.; Zhang, L. Reinforced cross-modal matching and self-supervised imitation learning for vision-language navigation. In Proceedings of the IEEE Conference Computer Vision Patt. Recogn. (CVPR), Long Beach, CA, USA, 16–20 June 2019. [Google Scholar]
  19. Landi, F.; Baraldi, L.; Cornia, M.; Corsini, M.; Cucchiara, R. Perceive, Transform., and Act.: Multi-modal Attention Networks for Vision-and-Language Navigation. arXiv 2019, arXiv:1911.12377. [Google Scholar]
  20. Hao, W.; Li, C.; Li, X.; Carin, L.; Gao, J. Towards learning a generic agent for vision-and-language navigation via pre-training. In Proceedings of the IEEE Conference Computer Vision Patt. Recogn. (CVPR), Seattle, WA, USA, 14–19 June 2020. [Google Scholar]
  21. Majumdar, A.; Shviastava, A.; Lee, S.; Anderson, P.; Parikh, D.; Batra, D. Improving vision-and-language navigation with image-text pairs from the Web. In Proceedings of the Europa Conference Computer Vision (ECCV), Glasgow, UK, 23–28 August 2020. [Google Scholar]
  22. Li, L.-H.; Yatskar, M.; Yin, D.; Hsieh, C.-J.; Chang, K.-W. VisualBERT: A Simple and Performant Baseline for Vision and Language. arXiv 2019, arXiv:1908.03557. [Google Scholar]
  23. Lu, J.; Batra, D.; Parikh, D.; Lee, S. VILBERT: Pretraining task-agnostic visiolinguistic representations for vision-and-language tasks. In Proceedings of the Thirty-Third conference Neural Information Processing Systems (NeurIPS), Vancouver, BC, Canada, 8–14 December 2019; pp. 13–23. [Google Scholar]
  24. Su, W.; Zhu, X.; Cao, Y.; Li, B.; Lu, L.; Wei, F.; Dai, J. VILBERT: Pre-training of generic visual linguistic representations. In Proceedings of the International Conference Learning Representation. (ICLR), Addis Ababa, Ethiopia, 26–30 April 2020. [Google Scholar]
  25. Chen, Y.-C.; Li, L.; Yu, L.; Kholy, A.-E.; Ahmed, F.; Gan, Z.; Cheng, Y.; Liu, J. UNITER: Universal Image-TExt Representation Learning. arXiv 2019, arXiv:1909.11740. [Google Scholar]
Figure 1. Examples of vision and language navigation (VLN) tasks.
Figure 1. Examples of vision and language navigation (VLN) tasks.
Sensors 21 01012 g001
Figure 2. Illustration of the VLN environment.
Figure 2. Illustration of the VLN environment.
Sensors 21 01012 g002
Figure 3. Overall architecture of the proposed model, JMEBS.
Figure 3. Overall architecture of the proposed model, JMEBS.
Sensors 21 01012 g003
Figure 4. Architecture of local scoring network.
Figure 4. Architecture of local scoring network.
Sensors 21 01012 g004
Figure 5. Architecture of joint multimodal embedding module.
Figure 5. Architecture of joint multimodal embedding module.
Sensors 21 01012 g005
Figure 6. Architecture of global scoring network.
Figure 6. Architecture of global scoring network.
Sensors 21 01012 g006
Figure 7. Different embedding features: (a) without joint embedding features (w/o JEF), (b) joint embedding visual features (JEVF), (c) joint embedding textual features (JETF), and (d) joint embedding textual and visual features (JETVF).
Figure 7. Different embedding features: (a) without joint embedding features (w/o JEF), (b) joint embedding visual features (JEVF), (c) joint embedding textual features (JETF), and (d) joint embedding textual and visual features (JETVF).
Sensors 21 01012 g007
Figure 8. Comparison of performance using different embedding features: (a) navigation error (NE), (b) success rate (SR), and (c) success rate weighted by path lengths (SPL).
Figure 8. Comparison of performance using different embedding features: (a) navigation error (NE), (b) success rate (SR), and (c) success rate weighted by path lengths (SPL).
Sensors 21 01012 g008
Figure 9. Different temporal contextualization modules: (a) attended visual context module (AvCM), (b) attended textual context module (AtCM), and the (c) attended visual–textual action module (AvtAM).
Figure 9. Different temporal contextualization modules: (a) attended visual context module (AvCM), (b) attended textual context module (AtCM), and the (c) attended visual–textual action module (AvtAM).
Sensors 21 01012 g009
Figure 10. First example of VLN task executed by the proposed model JMEBS: Step1–3.
Figure 10. First example of VLN task executed by the proposed model JMEBS: Step1–3.
Sensors 21 01012 g010
Figure 11. First example of VLN task executed by the proposed model JMEBS: Step 4–6.
Figure 11. First example of VLN task executed by the proposed model JMEBS: Step 4–6.
Sensors 21 01012 g011
Figure 12. Second example of VLN task executed by the proposed model JMEBS: Step1–4.
Figure 12. Second example of VLN task executed by the proposed model JMEBS: Step1–4.
Sensors 21 01012 g012
Figure 13. Second example of VLN task executed by the proposed model JMEBS: Step 5–9.
Figure 13. Second example of VLN task executed by the proposed model JMEBS: Step 5–9.
Sensors 21 01012 g013
Table 1. Comparison among different embedding features (SR: success rate, SPL: success rate weighted by path lengths, NE: navigation error, JEF: joint embedding features, JEVF: joint embedding visual features, JETF: joint embedding textual features, and JETVF: joint embedding textual and visual features).
Table 1. Comparison among different embedding features (SR: success rate, SPL: success rate weighted by path lengths, NE: navigation error, JEF: joint embedding features, JEVF: joint embedding visual features, JETF: joint embedding textual features, and JETVF: joint embedding textual and visual features).
Embedding
Features
Val-SeenVal-Unseen
SRSPLNESRSPLNE
w/o JEF62.059.04.052.048.05.2
JEVF66.061.63.656.550.04.5
JETF66.562.93.655.450.94.7
JETVF67.963.93.658.753.54.4
Table 2. Comparison among different temporal contextualization modules.
Table 2. Comparison among different temporal contextualization modules.
Temporal
Contextualization
Val-SeenVal-Unseen
SRSPLNESRSPLNE
AvCM67.964.13.458.551.84.4
AtCM64.860.33.653.649.94.8
AvtAM67.963.93.658.753.54.4
Table 3. Comparison among different global scoring methods.
Table 3. Comparison among different global scoring methods.
No.Global ScoringVal-Unseen
SRSPLNE
1LD with single instruction54.148.94.6
2DTW with single instruction54.749.24.6
3LD with triple instructions57.149.74.5
4DTW with triple instructions59.051.64.5
Table 4. Comparison among different search methods.
Table 4. Comparison among different search methods.
SearchVal-SeenVal-Unseen
SRSPLNETLSRSPLNETL
Greedy67.963.93.612.158.753.54.413.1
Beam (K = 10)70.30.015.2457.961.50.015.2409.1
Beam (K = 20)76.60.014.5771.262.60.014.6688.3
Beam (K = 30)79.20.014.21122.972.90.014.51015.2
BGLS 70.164.13.213.559.051.64.415.1
Table 5. Comparison of the-state-of-art models.
Table 5. Comparison of the-state-of-art models.
ModelVal-SeenVal-UnseenTest
SRSPLNESRSPLNESRSPLNE
Random [7]15.9-9.516.0-9.213.012.09.8
T-Forcing [7]27.4-8.019.6-8.6---
S-Forcing [7]38.6-6.021.8-7.820.018.07.8
Speaker-Follower [9]66.0-3.436.0-6.635.028.06.6
RCM [18]67.0-3.443.0-5.943.035.06.0
Self-monitoring [10]67.058.03.245.032.05.548.032.06.0
Regretful [10]69.063.03.250.041.05.348.040.05.7
Env-Dropout [15]62.059.04.052.048.05.251.547.05.2
OAAM [11]65.062.0-54.050.0-53.050.0-
LVERG [12]67.070.03.4757.053.04.755.052.04.7
PREVALENT [20]67.864.83.657.652.24.654.051.05.3
Tactical-Rewind [14]70.04.03.163.02.04.061.03.04.3
JMEBS (Greedy)67.963.93.658.753.54.452.147.45.4
JMEBS (BGLS)70.164.13.259.051.64.455.751.85.2
Publisher’s Note: MDPI stays neutral with regard to jurisdictional claims in published maps and institutional affiliations.

Share and Cite

MDPI and ACS Style

Hwang, J.; Kim, I. Joint Multimodal Embedding and Backtracking Search in Vision-and-Language Navigation. Sensors 2021, 21, 1012. https://doi.org/10.3390/s21031012

AMA Style

Hwang J, Kim I. Joint Multimodal Embedding and Backtracking Search in Vision-and-Language Navigation. Sensors. 2021; 21(3):1012. https://doi.org/10.3390/s21031012

Chicago/Turabian Style

Hwang, Jisu, and Incheol Kim. 2021. "Joint Multimodal Embedding and Backtracking Search in Vision-and-Language Navigation" Sensors 21, no. 3: 1012. https://doi.org/10.3390/s21031012

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop