Pith. sign in

REVIEW 3 major objections 4 minor 12 references

Imitation Learning from a Single Temporally Misaligned Video

T0 review · 3 major / 4 minor · reviewed 2026-08-08 · deepseek-v4-flash

Pith's one-line read Two sequences match, even under temporal misalignment, when one covers all of the other's subgoals in order; the paper builds a dense reward, ORCA, on that ordered-coverage criterion and shows it outperforms frame-level matching baselines.

desk verdict ORCA's ordered-coverage reward is a real idea and the Meta-world results hold up, but the Humanoid headline is misreported and the comparison is confounded. read the letter →

arxiv 2502.05397 v2 pith:YCXPCD4W submitted 2025-02-08 cs.LG

classification cs.LG
keywords imitationlearningtemporalmisalignmentorderedcoveragerewardfunctionsubgoaloptimaltransportsequencematchingreinforcement
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

This paper argues that imitation from a single video demonstration fails when the reward is defined by matching individual frames, because frame-level matching ignores whether subgoals are visited in the right order and whether all of them are ever covered. The authors propose replacing frame matching with sequence-level matching: a learner trajectory and a demonstration match exactly when the learner covers every demonstration subgoal in the same order, without requiring timing to line up. They instantiate this as ORCA, a dense per-timestep reward that computes the probability that the learner has covered all earlier subgoals in order and currently occupies the final one. On temporally misaligned demonstrations, agents trained with ORCA achieve 4.5x higher average normalized returns on Meta-world tasks and 6.6x higher returns on Humanoid-v4 tasks than the best frame-level matching baselines. If this holds, ordered coverage gives a principled reward signal for learning sequential tasks from a single video.

What carries the argument

The ordered coverage matrix $C_{t,j}$ with recurrence $C_{t,j} = \max\{C_{t-1,j}, C_{t,j-1}\exp(-\lambda d(o_t,\tilde{o}_j))\}$, where $d$ is a visual distance between frames and $\lambda$ a temperature set to 1; coverage of a later subgoal can never exceed coverage of earlier ones, and the final reward $C_{t,\tilde{T}-1}\exp(-\lambda d(o_t,\tilde{o}_{\tilde{T}}))$ requires the agent to have covered all earlier subgoals and currently occupy the last one. This mechanism turns the non-Markovian requirement of ordered progress into a per-timestep scalar computed by dynamic programming in $O(T\tilde{T})$ time, the same order as any frame-distance-based baseline.

What would settle it

Take any task from the paper and make two adjacent subgoals visually indistinguishable to the chosen encoder, for example by blurring or recoloring the object that distinguishes them; if an agent that skips the second subgoal earns the same cumulative ORCA reward as one that covers both, the ordered-coverage guarantee fails because the P_{t,j} term no longer separates subgoals.

Watch

Extended reading notes

Core claim

ORCA (ORdered Coverage Alignment) defines ordered coverage between a learner trajectory and a demonstration as the probability that the learner has covered each demonstration frame as a subgoal in the correct order. The coverage matrix $C_{t,j}$ is computed by dynamic programming as $C_{t,j} = \max\{C_{t-1,j}, C_{t,j-1}P_{t,j}\}$, where $P_{t,j} = \exp(-\lambda d(o_t, \tilde{o}_j))$ estimates the probability that the learner occupies subgoal $j$ at time $t$. The per-timestep reward is $C_{t,\tilde{T}-1}P_{t,\tilde{T}}$: the probability that all prior subgoals are covered and the learner currently occupies the final subgoal. The paper proves that this reward strictly prefers an in-order trajectory over an out-of-order one and a trajectory that progresses to the next subgoal over one that stalls, thereby satisfying the two desiderata of subgoal ordering and subgoal coverage; it also gives counterexamples showing optimal transport, dynamic time warping, and TemporalOT each violate one of these desiderata on misaligned demonstrations. Empirically, ORCA-trained policies outperform all frame-level matching baselines on Meta-world and Humanoid tasks with temporally misaligned demonstrations.

Load-bearing premise

ORCA assumes that the probability a learner occupies a demonstration subgoal is read off from a fixed visual similarity score, exp(-lambda d(o_t, o_tilde_j)), so if the visual encoder cannot tell two subgoals apart, the reward has no signal.

Editorial extensions

If this is right

  • Agents trained with ORCA outperform the best frame-level matching algorithms on temporally misaligned demonstrations, improving average normalized returns from 0.11 to 0.50 on Meta-world and average returns from 6.55 to 43.3 on Humanoid-v4.
  • ORCA remains robust as temporal misalignment increases, whereas TemporalOT's performance degrades sharply with any degree of misalignment.
  • With temporally aligned demonstrations, pretraining on TemporalOT rewards then refining with ORCA gives the best performance (0.57 average normalized return), showing that the ordered-coverage objective improves even over a well-matched frame-level initialization.
  • ORCA scales to multiple demonstrations by max-pooling rewards across videos, and performance improves as more demonstrations are added, including demonstrations with different speeds.
  • ORCA works with image-conditioned policies as well as state-based ones, and its runtime is comparable to or faster than the strongest frame-level baselines.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • Because the recurrence only needs pairwise frame similarities, the same ordered-coverage reward could be applied to any discretized goal sequence beyond video frames, such as text subgoals or keypoint trajectories, which the authors note as future work.
  • ORCA's success is bounded by the quality of the visual distance metric; on tasks where subgoals are visually confusable, such as the paper's Push failure, a learned or online-finetuned distance function is a direct extension that could recover the signal.
  • The counterexamples for OT, DTW, and TemporalOT imply that any frame-level matching reward lacking monotone ordered coverage must have a local minimum where the agent stalls or skips subgoals, framing the design space for future sequence-matching reward functions.
  • Since the reward is per-timestep and dense, it could be combined with other auxiliary rewards or shaped toward sparse task completion signals without changing the ordered-coverage structure.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

3 major / 4 minor

Summary. The paper studies imitation learning from a single video demonstration under temporal misalignment, arguing that frame-level distribution-matching rewards (OT, DTW, TemporalOT) fail to enforce subgoal ordering and full coverage. It proposes ORCA, a dense reward that recursively computes the probability that the learner has covered all demonstration frames in the correct order, and proves two propositions showing that ORCA rewards progress and ordering in a stylized sense. Experiments on Meta-world and Humanoid-v4 report that ORCA achieves 4.5x and 6.6x improvements over frame-level baselines, with additional studies on misalignment levels, multiple demonstrations, image-conditioned policies, and visual encoders.

Significance. If the empirical claims held, ORCA would be a valuable, simple, non-learned reward function for single-video imitation under temporal misalignment. The paper has clear strengths: the reward is defined by a transparent dynamic program rather than a fitted network; the theoretical propositions articulate concrete failure modes of OT and DTW; the implementation is released; and the experiments include several useful ablations, including varying misalignment, multiple demonstrations, image-based policies, and encoder choices. However, the headline Humanoid result is numerically misreported and confounded by an extra privileged stability reward and a task-specific visual metric, so the current evidence does not support the strongest claims. The Meta-world results are more credible and, together with the analysis, justify a major revision rather than rejection.

major comments (3)
  1. [Abstract, Sec. 1, Table 4 (App. C)] The abstract and Sec. 1 state a 6.6x Humanoid improvement over the best frame-level matching algorithms. Table 4 shows that the best frame-level baseline by average return is OT at 14.67, not TemporalOT at 6.55; ORCA's 43.28 is a 2.95x improvement and ORCA(NP)'s 62.68 is a 4.27x improvement. The stated 6.6x ratio compares ORCA only to TemporalOT, so the headline claim should be revised to compare against the actual best frame-level baseline.
  2. [Sec. 5.1, App. B.3.2, Eq. (33), App. B.5] The Humanoid experiments do not isolate the ORCA reward. Eq. (33) defines the final reward as R = c(phi(o_t)) * R_ORCA + lambda * R_stability, where R_stability = exp(-(h_torso - 1.3)^2) - c_ctrl uses privileged torso height and the environment control cost, and c(.) is an autoencoder-derived confidence score. The OT, DTW, and TemporalOT descriptions in App. B.5 include no analogous terms, so ORCA receives dense task shaping that the baselines do not. In addition, the Humanoid distance function is a joint-position predictor fine-tuned on 9,038 privileged-state samples (Apps. B.3.2, B.3.3), whereas Sec. 5.1 states that all approaches use a pretrained ResNet50 with cosine similarity; this discrepancy must be resolved and the comparison rerun with identical reward components.
  3. [Sec. 5.1 vs App. B.3.2] The paper says the Humanoid success metric uses privileged states 'which no approaches have access to', yet Eq. (33) gives ORCA's reward direct access to h_torso and c_ctrl through R_stability. This is a contradiction, and it means ORCA is evaluated with a privileged reward even if the visual metric were held fixed. Please either justify this design choice or remove the stability term from the comparison.
minor comments (4)
  1. [Algorithm 1] The boundary conditions for C_{0,j} and C_{t,0} are not defined, although the nested loop recomputes the first row and first column after their initialization; please specify these boundaries or restrict the loop to t >= 2 and j >= 2.
  2. [Secs. 5.2 and 5.5] Both sections refer to 'Table 4.3', but the Meta-world misaligned-demonstration results are in Table 1; please correct the table references.
  3. [Sec. 4.1, Eq. (5)] The quantity P(G_{t,j}) is introduced as a probability but is only defined up to proportionality as exp(-lambda * d). Since no normalization is supplied, it is effectively a similarity score; please either normalize it explicitly or avoid the probabilistic terminology.
  4. [App. B.1 vs Sec. 5.1] App. B.1 states that all baselines except RoboCLIP use the same Humanoid distance function, while Sec. 5.1 says all approaches use a pretrained ResNet50 with cosine similarity; please state unambiguously which distance is used by each baseline in the Humanoid experiments.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: ORCA's reward is defined, not fitted, and the main results are external empirical comparisons.

full rationale

The ORCA reward is constructed via the DP recurrence in Eq. (5) and Eq. (6) with temperature lambda=1 (Appendix B.5), and no parameter is fitted to the reported returns; the ordered-coverage recursion is a definition rather than a fitted predictor. Propositions 4.1 and 4.2 are direct consequences of this definition, but the paper does not use them to derive its empirical headline; the empirical claims are measured on Meta-world and Humanoid against independent baselines. The Meta-world ORCA is pretrained on TemporalOT for half of training, but ORCA(NP), trained without that initialization, achieves 0.49 average normalized return versus 0.50 for ORCA, so the result is not forced by the baseline checkpoint; in Humanoid, ORCA(NP) (62.68) is actually higher than ORCA (43.28). The Humanoid final reward in Eq. (33) includes a privileged stability bonus and a fine-tuned visual metric not used by the baselines, which is a comparison confound and correctness risk rather than circular reasoning, since those terms are additional supervision and not fitted equivalents of the claimed output. The self-citations present (e.g., Swamy et al. 2021, Kedia et al. 2025) are background references and are not load-bearing for ORCA's construction or evaluation. The paper is self-contained against external benchmarks, so the appropriate circularity finding is none.

Assumptions & free parameters 4 free parameters · 4 assumptions · 0 invented entities

The central claim rests on a modeling choice (exponential occupancy probability), a domain restriction (ordered subgoal tasks), and, for the Humanoid headline, environment-specific auxiliary rewards. The paper adds no new physical entities. The main free parameter is lambda=1, untested for sensitivity.

free parameters (4)
  • temperature lambda = 1
    Sharpness of the subgoal-occupancy probability P_{t,j} = exp(-lambda * d). Set to 1 for all tasks with no sensitivity analysis (App. B.5).
  • context window cw = 3
    Smoothing of the distance matrix, borrowed from Fu et al. (2024c) and applied to all methods (App. B.2.2).
  • TemporalOT mask window km = 10 for aligned demos, about ceil(|xi|/10) for misaligned demos
    Hyperparameter for the TemporalOT baseline, chosen per reference length; not an ORCA parameter (App. B.5).
  • Humanoid confidence spread k_sigma and stability reward weight lambda = k_sigma=2; lambda not reported
    Extra reward shaping in Humanoid experiments: R = c(phi)*R_orca + lambda*R_stability with R_stability from Eq. 31; the weight lambda is not specified in the appendix (App. B.3.2).
assumptions (4)
  • domain assumption The task is a strict sequence-matching problem: all subgoals must be completed in the demonstrated order.
    Sec. 2 defines the problem this way; ORCA is not evaluated on tasks with unordered goals.
  • ad hoc to paper Probability of occupying a subgoal is proportional to exp(-lambda * distance) with a fixed lambda.
    Eq. 5 in Sec. 4.1; no derivation from first principles.
  • domain assumption A pretrained or environment-fine-tuned visual encoder provides a valid distance between frames.
    Used in all methods; the paper notes this as a limitation (Sec. 7) and explains the Push task failure with it (Sec. 5.2).
  • ad hoc to paper Humanoid experiments assume access to a stability reward and a trained joint-position predictor.
    App. B.3.2, Eqs. 31-33; not mentioned in main text Sec. 5.1.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Imitation Learning from a Single Temporally Misaligned Video." pith.science (2026). https://pith.science/paper/YCXPCD4W

@misc{pith2026250205397,
  author       = {Pith},
  title        = {Pith review of: Imitation Learning from a Single Temporally Misaligned Video},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/YCXPCD4W}},
  note         = {Machine review of arXiv:2502.05397}
}
abstract

We examine the problem of learning sequential tasks from a single visual demonstration. A key challenge arises when demonstrations are temporally misaligned due to variations in timing, differences in embodiment, or inconsistencies in execution. Existing approaches treat imitation as a distribution-matching problem, aligning individual frames between the agent and the demonstration. However, we show that such frame-level matching fails to enforce temporal ordering or ensure consistent progress. Our key insight is that matching should instead be defined at the level of sequences. We propose that perfect matching occurs when one sequence successfully covers all the subgoals in the same order as the other sequence. We present ORCA (ORdered Coverage Alignment), a dense per-timestep reward function that measures the probability of the agent covering demonstration frames in the correct order. On temporally misaligned demonstrations, we show that agents trained with the ORCA reward achieve $4.5$x improvement ($0.11 \rightarrow 0.50$ average normalized returns) for Meta-world tasks and $6.6$x improvement ($6.55 \rightarrow 43.3$ average returns) for Humanoid-v4 tasks compared to the best frame-level matching algorithms. We also provide empirical analysis showing that ORCA is robust to varying levels of temporal misalignment. Our code is available at https://github.com/portal-cornell/orca/

Figures

Figures reproduced from arXiv: 2502.05397 by the authors.

Figure 1
Figure 1. ORCA overview. The expert video demonstrates the Stick-Push task, where the robot must grasp the tool before pushing the water bottle. However, this demonstration is temporally misaligned because it contains long pauses before picking up the tool. To learn from this demonstration, ORCA provides a per-timestep reward for the visual learner trajectory ξ = {ot} T t=1. (1) Each frame is passed through an off-the-shelf v… view at source ↗
Figure 2
Figure 2. Failure cases for OT reward. The suboptimal learner trajectory ξ − moves in the counter-clockwise direction while opti￾mal one ξ + moves clockwise. Unlike the learner, the agent in the demonstration trajectory can move multiple cells per timestep. bution over frames, we should be matching the distribution over trajectories. We propose that the corresponding reward should be a measure of: 1. Subgoal Ordering: A learn… view at source ↗
Figure 3
Figure 3. Qualitative example of TemporalOT failing to encourage full subgoal coverage. The video demonstration shows how to open a door by latching on the door handle, but it speeds through the movement after latching. TemporalOT trains a slow agent that fails to complete the task due to its diagonal-like matching matrix, but ORCA trains a successful agent that completes the task efficiently. positions. These demonstrations … view at source ↗
Figures from the paper (16 more)
Figure 4
Figure 4. Figure 4: Results given varying levels of temporal misalignment. We report the mean expert-normalized returns with standard er￾ror across 3 Meta-world tasks (Door open, Window open, Lever pull). We generate 3 perturbed demonstrations per task per mis￾alignment level (L=Low, H=Hi…
Figure 5
Figure 5. Figure 5: Results given temporally aligned demonstrations. We report mean expert-normalized returns with standard error across all 10 Meta-world tasks. produce coupling matrices that approximate the diagonal matrix, as shown in [PITH_FULL_IMAGE:figures/full_fig_p008_5.png]
Figure 6
Figure 6. Figure 6: Results given more demonstrations. Same indicates that all demonstrations in the set are the same speed, whereas Diff indicates that they are different speeds. We report mean expert￾normalized returns with standard error across 3 Meta-world tasks (Door open, Window ope…
Figure 7
Figure 7. Figure 7: Failure cases for OT reward in the 2D-Navigation environment. Both DTW and ORCA overcomes OT’s limitation. A.2. Toy Examples of ORCA Overcoming Failure Cases of Existing Approaches We present complete figures showing how ORCA overcomes OT’s failure to enforce subgoal o…
Figure 8
Figure 8. Figure 8: Failure cases for DTW reward in the 2D-Navigation environment. ORCA overcomes DTW’s limitation. The suboptimal learner trajectory ξ − gets stuck at the second frame of the demonstration, while the optimal one ξ + makes consistent progress [PITH_FULL_IMAGE:figures/full…
Figure 9
Figure 9. Figure 9: Failure cases for TemporalOT reward given a temporally misaligned demonstration in the 2D-Navigation environment. ORCA overcomes TemporalOT’s limitation. the video demonstration is temporally misaligned because the agent can move one cell at a time, and the subgoals wo…
Figure 10
Figure 10. Figure 10: Visual Demonstrations of the tasks in the Humanoid Environment. These were generated by selecting the target final joint state, interpolating from the start joint state, and rendering the intermediate frames. it does not have enough information to model the reward. In…
Figure 11
Figure 11. Figure 11: Goal-reaching rewards of (left) two pretrained models and (right) our joint prediction model on an example learner trajectory, with the goal of raising the left arm to the side. To emphasize their shape, all rewards are normalized along the trajectory dimension. Rewar…
Figure 12
Figure 12. Figure 12: The impact of confidence scaling on rewards for a trajectory where the robot falls down. The ground truth trajectory is shown on top and renders of the model’s joint predictions given the top frames are shown on the bottom. The rewards are computed with respect to the…
Figure 13
Figure 13. Figure 13: Training Curves for All Meta-world tasks Given Temporally Misaligned Demonstrations We compute the mean and standard error across the 3 training runs, each evaluated on 10 random seeds [PITH_FULL_IMAGE:figures/full_fig_p023_13.png]
Figure 14
Figure 14. Figure 14: Training curves for all humanoid tasks. We compute the mean and standard error across the 3 training runs, each evaluated on 8 random seeds. Because TemporalOT achieves poor performance, ORCA does not benefit from pretraining, and ORCA(NP) is the most successful. 23 …
Figure 15
Figure 15. Figure 15: shows a qualitative comparison between frame-level matching approaches and ORCA on the left arm up task. ORCA quickly solves the task, while the other approaches have the failure modes described in Sec. 3 [PITH_FULL_IMAGE:figures/full_fig_p024_15.png]
Figure 16
Figure 16. Figure 16: Training Curves for All Meta-world tasks Given Temporally Aligned Demonstrations We compute the mean and standard error across the 3 training runs, each evaluated on 10 random seeds [PITH_FULL_IMAGE:figures/full_fig_p025_16.png]
Figure 17
Figure 17. Figure 17: Example of how OT and TemporalOT (depending on the mask window size kw) fail to enforce subgoal ordering when solving a Meta-world task (Stick-Push) [PITH_FULL_IMAGE:figures/full_fig_p026_17.png]
Figure 18
Figure 18. Figure 18: Example of how DTW fails to enforce full subgoal coverage when solving a Meta-world task (Lever-pull) [PITH_FULL_IMAGE:figures/full_fig_p026_18.png]
Figure 19
Figure 19. Figure 19: Example of how pretraining improves ORCA’s performance. 26 [PITH_FULL_IMAGE:figures/full_fig_p026_19.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

12 extracted references · 7 canonical work pages

  1. [1]

    Context embedding: We use the context embedding-based cost matrix proposed in (Fu et al., 2024c), which can be interpreted as a diagonal smoothing kernel. Specifically, the distance between two frames is expressed as the average distance over the next cw learner and demonstration frames (where cw refers to the context window): dwindow(oL i , oD j ) = 1 cw...

  2. [2]

    Low" level of misalignment and the other 3 as having “High

    Timestep in agent state: By nature of the sequence-following task, the reward at a given time step depends on the states visited by the learner in previous time steps. Thus, if the policy or value estimator cannot observe the entire trajectory, then 18 Imitation Learning from a Single Temporally Misaligned Video Figure 10. Visual Demonstrations of the tas...

  3. [5]

    Sakoe, H

    URL https://openreview.net/forum? id=N0I2RtD8je. Sakoe, H. and Chiba, S. Dynamic programming algorithm optimization for spoken word recognition. IEEE Trans- actions on Acoustics, Speech, and Signal Processing, 26 (1):43–49, 1978. doi: 10.1109/TASSP.1978.1163055. Sontakke, S., Zhang, J., Arnold, S., Pertsch, K., Bıyık, E., Sadigh, D., Finn, C., and Itti, L...

  4. [7]

    Todorov, E., Erez, T., and Tassa, Y

    URL https://openreview.net/forum? id=CTlUHIKF71. Todorov, E., Erez, T., and Tassa, Y . Mujoco: A physics engine for model-based control. In 2012 IEEE/RSJ Inter- national Conference on Intelligent Robots and Systems, pp. 5026–5033, 2012. doi: 10.1109/IROS.2012.6386109. Torabi, F., Warnell, G., and Stone, P. Genera- tive adversarial imitation from observati...

  5. [9]

    Yu, T., Quillen, D., He, Z., Julian, R., Hausman, K., Finn, C., and Levine, S

    URL https://openreview.net/forum? id=L5HKN-IsdSE. Yu, T., Quillen, D., He, Z., Julian, R., Hausman, K., Finn, C., and Levine, S. Meta-world: A benchmark and evaluation for multi-task and meta reinforcement learning. In Kael- bling, L. P., Kragic, D., and Sugiura, K. (eds.),Proceed- ings of the Conference on Robot Learning, volume 100 of Proceedings of Mac...

  6. [1100]

    URL https:// proceedings.mlr.press/v100/yu20a.html

    PMLR, 30 Oct–01 Nov 2020. URL https:// proceedings.mlr.press/v100/yu20a.html. Zhai, X., Mustafa, B., Kolesnikov, A., and Beyer, L. Sig- moid loss for language image pre-training. In Proceed- ings of the IEEE/CVF International Conference on Com- puter Vision (ICCV), pp. 11975–11986, October 2023. Ziebart, B. D., Maas, A. L., Bagnell, J. A., Dey, A. K., et ...

  7. [2017]

    cc/paper_files/paper/2017/file/ ba3866600c3540f67c1e9575e213be0a-Paper

    URL https://proceedings.neurips. cc/paper_files/paper/2017/file/ ba3866600c3540f67c1e9575e213be0a-Paper. pdf. Eschmann, J. Reward function design in reinforcement learning. Reinforcement Learning Algorithms: Analysis and Applications, pp. 25–33, 2021. Foundation, F. Humanoid-v4, 2024. URL https: //gymnasium.farama.org/environments/ mujoco/humanoid/. Frey,...

  8. [2019]

    Xiao, H., Herman, M., Wagner, J., Ziesche, S., Etesami, J., and Linh, T

    URL http://www.cs.utexas.edu/ users/ai-lab?ICML19a-torabi. Xiao, H., Herman, M., Wagner, J., Ziesche, S., Etesami, J., and Linh, T. H. Wasserstein adversarial imitation learning, 2019. URL https://arxiv.org/abs/ 1906.08113. Xie, S., Sun, C., Huang, J., Tu, Z., and Murphy, K. Re- thinking spatiotemporal feature learning: Speed-accuracy trade-offs in video ...

Show all 12 references
  1. [2021]

    Deng, J., Dong, W., Socher, R., Li, L.-J., Li, K., and Fei-Fei, L

    URL https://openreview.net/forum? id=TtYSU29zgR. Deng, J., Dong, W., Socher, R., Li, L.-J., Li, K., and Fei-Fei, L. Imagenet: A large-scale hierarchical image database. In 2009 IEEE conference on computer vision and pattern recognition, pp. 248–255. Ieee, 2009. Duan, Y ., Andr...

  2. [2023]

    Fu, L., Huang, H., Datta, G., Chen, L

    doi: 10.15607/RSS.2023.XIX.054. Fu, L., Huang, H., Datta, G., Chen, L. Y ., Panitch, W. C.-H., Liu, F., Li, H., and Goldberg, K. In-context imitation learning via next-token prediction, 2024a. URL https: //arxiv.org/abs/2408.15980. Fu, Y ., Zhang, H., Wu, D., Xu, W., and Boule...

  3. [2024]

    Luo, Y ., zhengyao jiang, Cohen, S., Grefenstette, E., and Deisenroth, M

    URL https://openreview.net/forum? id=pPJTQYOpNI. Luo, Y ., zhengyao jiang, Cohen, S., Grefenstette, E., and Deisenroth, M. P. Optimal transport for offline imita- tion learning. In The Eleventh International Confer- ence on Learning Representations, 2023. URL https: //openrevi...

  4. [6045]

    Swamy, G., Choudhury, S., Bagnell, J

    PMLR, 2019. Swamy, G., Choudhury, S., Bagnell, J. A., and Wu, S. Of moments and matching: A game-theoretic framework for closing the imitation gap. In International Conference on Machine Learning, pp. 10022–10032. PMLR, 2021. Tian, T., Xu, C., Tomizuka, M., Malik, J., and Bajc...

Pith tools

Reviewed August 8, 2026 · model on record in the stance chip above.