Pith. sign in

REVIEW 3 major objections 4 minor 41 references

Beyond Domain Randomization: Event-Inspired Perception for Visually Robust Adversarial Imitation from Videos

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

Pith's one-line read By converting RGB video into sparse event-style streams, this paper claims imitation learning becomes insensitive to lighting, color, and texture mismatches without data augmentation.

desk verdict A cheap, plausible event-inspired preprocessing for V-IfO that works in experiments, but the invariance story doesn't survive contact with the one-pixel camera-shift trick. read the letter →

arxiv 2505.18899 v1 pith:KH6L7A6F submitted 2025-05-24 cs.CV cs.LGcs.RO

classification cs.CVcs.LGcs.RO
keywords event-basedvisionimitationfromobservationsadversariallearningvisualdomainshiftrandomizationeventcamerastemporalgradientsvisuomotorpolicy
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 visual domain shift in imitation from videos can be eliminated at the sensory level rather than patched by data augmentation. Instead of randomizing colors, lighting, and textures in training data, it converts RGB video into a sparse event-style representation that keeps only temporal intensity changes. The claim is that this event stream contains the motion dynamics needed for control while discarding appearance-based distractors, so cross-domain imitation reduces to ordinary observation-space imitation. On the DeepMind Control Suite and the Adroit dexterous manipulation benchmark, the resulting method, EB-LAIfO, outperforms baselines that use contrastive learning or augmentation. A sympathetic reader would take away that event-style preprocessing is a cheap, parameter-free way to gain appearance invariance.

What carries the argument

The load-bearing object is the event transformation $\zeta$ defined in equation (2): a pixel fires $+1$ or $-1$ when the log-intensity difference between consecutive frames exceeds threshold $C$, and $0$ otherwise, with a one-pixel camera-shift padding so static scenes still produce a stream. $\zeta$ is a pure mathematical operation, so it needs no learning, no augmentation, and no prior knowledge of the target domain. Its invariance properties, robustness to affine brightness maps and low-frequency perturbations, are what make the appearance gap disappear before any feature learning begins.

What would settle it

Run a V-IfO task whose goal is defined by an appearance cue, say moving the red block rather than the blue one, while the robot camera is static. If the event stream contains no signal for which block is which, EB-LAIfO should fail, which would confirm that $\zeta$ discards goal-relevant appearance.

Watch

Extended reading notes

Core claim

The paper's central discovery is a preprocessing transform $\zeta$ that maps two consecutive RGB frames to a ternary event map encoding whether log-intensity rose, fell, or stayed flat by more than a threshold $C$. This transform is invariant to affine brightness changes and low-frequency appearance shifts, and it preserves the temporal gradients that reveal motion. The authors argue that under the observation decomposition $X=(\bar{X},\hat{X})$, $\zeta$ recovers the goal-relevant component $\bar{X}$ directly in pixel space, so the V-IfO problem with mismatches collapses to a standard V-IfO problem solvable by any SOTA algorithm. They instantiate this with LAIfO to form EB-LAIfO, and experiments show it reaches near-expert returns in several perturbed DMC environments and on Adroit Hammer tasks.

Load-bearing premise

The event transform assumes every goal-relevant visual cue is a temporal intensity change, so any task where appearance itself carries the goal, for example distinguishing objects by color, would lose the signal entirely.

Editorial extensions

If this is right

  • Cross-domain visual imitation reduces to standard V-IfO once both expert and agent observations pass through the event transform, so any SOTA algorithm for the no-mismatch setting can be reused unchanged.
  • Domain randomization and handcrafted augmentation pipelines become unnecessary for appearance shifts, eliminating a computationally expensive and environment-specific preprocessing stage.
  • Because the transform is parameter-free and applied before learning, the method is more sample-efficient than contrastive-learning baselines, converging faster in strong mismatch settings such as the DMC Floor and Background perturbations.
  • Synthetic event streams are a viable proxy for real event cameras, and the noise ablation indicates graceful degradation up to moderate sensor noise, opening a route to low-power high-temporal-resolution hardware.
  • On Adroit dexterous manipulation, combining the learned event-based reward with a sparse environment reward yields near-expert performance on Hammer tasks under light and color shifts.

Reading between the lines

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

  • The method is inherently limited to tasks where motion dynamics carry the goal; if object identity or static appearance matters, the event stream is silent, so a sensible scope is motion-centric manipulation and locomotion.
  • The one-pixel camera-shift heuristic encodes an assumption of a static camera; deploying on moving or egocentric footage would flood the stream with ego-motion events, so an extension would need to separate egomotion from task motion.
  • The same observation-level filtering could be applied to other visuomotor RL settings, not only imitation, as a general way to make pixel observations insensitive to appearance shifts.
  • A physical event camera, which natively captures asynchronous microsecond changes, would test whether the synthetic pipeline's noise fidelity actually matters for downstream policy performance.
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 proposes EB-LAIfO, a visual imitation-from-observations method that preprocesses each pair of consecutive RGB frames with a hand-designed 'event-inspired' transform (Eq. (2)): each pixel is set to +1 or -1 if the temporal log-intensity difference exceeds a threshold C, and to 0 otherwise. To avoid an empty representation in static scenes, the previous frame is shifted by one pixel before comparison. The transformed observations are fed into the LAIfO latent adversarial imitation pipeline. The authors claim that the transform discards appearance-based distractors while preserving goal-relevant motion, thereby reducing visual-mismatch V-IfO to standard V-IfO. This claim is backed by approximate invariance arguments and by experiments on the DeepMind Control Suite (light, body, floor, background, and full mismatches) and on Adroit (Door and Hammer tasks under light and color changes), plus a Gaussian-noise ablation study.

Significance. An inexpensive, augmentation-free input representation that genuinely removed appearance-based distractors would be methodologically valuable and practically attractive; the paper is also commendable for releasing code and for evaluating across two benchmarks against several strong baselines. However, the central invariance claim is not established by the current derivation: the one-pixel shift turns Eq. (2) into a spatial edge detector, so static appearance can leak into the representation. The empirical results remain interesting but need to be reinterpreted in light of this, and the theoretical statements require correction.

major comments (3)
  1. [Section IV-a, Eq. (2)] The one-pixel camera-shift trick contradicts the claimed invariance to static appearance. For a static scene (x_t = x_{t-1}), the event condition becomes |log I(u,v) - log I(u+1,v+1)| >= C, i.e., a diagonal spatial-gradient edge detector. High-contrast textures or color boundaries therefore produce many 'events' while uniform regions produce none, so the representation depends on static appearance. This means the central claim that event-inspired perception 'discards static appearance features' is not a consequence of Eq. (2). Please either remove the shift and address the empty-stream problem differently, or revise the invariance claim and add experiments that explicitly vary static texture and background appearance while keeping the motion fixed.
  2. [Section IV-a, low-frequency invariance] The stated condition for low-frequency invariance, namely that ζ(I_t, I_{t-1}+η) = ζ(I_t, I_{t-1}) if C - |log(I_t/I_{t-1})| > η, is not a valid derivation. Here η is an additive intensity perturbation, while the log ratio is dimensionless; for small η the change in the log-difference is approximately η/I_{t-1}, which depends on the intensity level. The authors should derive a correct bound and state the assumptions on η and I. As written, the claim of robustness to low-frequency image details is unsupported.
  3. [Section V, experimental setup] The event threshold C is a free parameter that is never reported, and no sensitivity analysis is provided. Since the density and content of the event stream are controlled entirely by C (together with the one-pixel shift), the reported results cannot be reproduced or fully assessed without this value. Please report the value of C used for each task, and include a sensitivity study over a range of thresholds.
minor comments (4)
  1. [Abstract and Section I] The method name is written inconsistently as 'Eb-LAIfO' in the abstract and code link but 'EB-LAIfO' elsewhere; please standardize.
  2. [Section II-c] There is a typo: 'characterisitics' should be 'characteristics'.
  3. [Section V-C] The phrase 'proving its applicability for real event cameras' overstates what a Gaussian-noise ablation can show; consider 'demonstrating'.
  4. [Table II and Section V-B] The Door-Light result (C-LAIfO 150±5 vs. EB-LAIfO 111±59) is acknowledged in the text, but the abstract and conclusion should be tempered to reflect that the proposed method does not consistently dominate all baselines in every condition.

Circularity Check

0 steps flagged · score 2.0 of 10

No significant circularity: the event transform is a fixed, non-learned preprocessing step and the experimental comparisons are external, though a one-pixel shift weakens the claimed appearance invariance.

full rationale

The paper's central claim is that a hand-coded event transform ζ (Eq. 2), combined with a one-pixel shift, removes appearance-based distractors and reduces cross-domain V-IfO to standard V-IfO. The transform is not learned and no parameters are fitted to the evaluation tasks: the threshold C is explicitly described as predefined, and the noise ablation uses fixed σ levels. The reduction to standard V-IfO is stated conditionally ('Provided the goal-relevant information ¯x_t, invariant between the source and target POMDPs...'), and the theoretical support is limited to affine brightness changes under αI >> β and low-frequency perturbations; the Conclusion separately concedes that appearance can be task-relevant. The one-pixel shift means that for a static camera the 'events' become diagonal spatial gradients, so the claim that static appearance is entirely discarded is empirically questionable, but this is a correctness or validity issue, not a circularity: no predicted quantity is equal by construction to a fitted input. The paper builds on the authors' prior LAIfO and C-LAIfO, but these are used as the integration base and as baselines; the event module's effect is tested on external benchmarks (DeepMind Control Suite, Adroit) against several other methods, so the central comparison is independent. No uniqueness theorem or ansatz is imported from self-citations to force the result. Therefore there is no significant circularity; at most a minor non-load-bearing self-citation, consistent with a score of 2.

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

The central claim rests on the assumption that time-contrast gradients are sufficient and necessary for the imitation tasks: all appearance variation is treated as distractor, and all goal-relevant variation is captured by temporal intensity changes. The event threshold C is a free parameter not reported. The system is built on the authors' prior LAIfO and C-LAIfO work, but the event transform itself is independent. No new entities are introduced.

free parameters (1)
  • event threshold C = not reported
    Threshold in Eq. (2) that determines when a log-intensity difference triggers an event. Its value is not given in the paper; if it was chosen based on validation performance, this is a fitted parameter.
assumptions (4)
  • domain assumption Observation space decomposes as X=(bar X, hat X), where bar X is goal-relevant and invariant across domains and hat X are distractors.
    Introduced in Section IV-a; the method assumes the goal-relevant component is unchanged between source and target and can be separated from appearance by the event transform.
  • domain assumption Affine brightness invariance holds under alpha I >> beta.
    Used in Section IV-a to show the event transform is invariant to I' = alpha I + beta; this approximation fails when the additive term beta is large.
  • ad hoc to paper Static scenes are handled by a one-pixel camera shift, assuming a fixed camera and translational motion.
    Section IV-a: to avoid empty event streams in static frames, x_t is compared with x_{t-1} shifted by one pixel; this is an ad hoc modeling choice that may not generalize to moving cameras.
  • ad hoc to paper Low-frequency perturbations are rejected when C - |log(I_t/I_{t-1})| > eta.
    Stated in Section IV-a as the low-frequency invariance condition; the derivation appears dimensionally inconsistent and is not properly justified.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Beyond Domain Randomization: Event-Inspired Perception for Visually Robust Adversarial Imitation from Videos." pith.science (2026). https://pith.science/paper/KH6L7A6F

@misc{pith2026250518899,
  author       = {Pith},
  title        = {Pith review of: Beyond Domain Randomization: Event-Inspired Perception for Visually Robust Adversarial Imitation from Videos},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/KH6L7A6F}},
  note         = {Machine review of arXiv:2505.18899}
}
read the original abstract

Imitation from videos often fails when expert demonstrations and learner environments exhibit domain shifts, such as discrepancies in lighting, color, or texture. While visual randomization partially addresses this problem by augmenting training data, it remains computationally intensive and inherently reactive, struggling with unseen scenarios. We propose a different approach: instead of randomizing appearances, we eliminate their influence entirely by rethinking the sensory representation itself. Inspired by biological vision systems that prioritize temporal transients (e.g., retinal ganglion cells) and by recent sensor advancements, we introduce event-inspired perception for visually robust imitation. Our method converts standard RGB videos into a sparse, event-based representation that encodes temporal intensity gradients, discarding static appearance features. This biologically grounded approach disentangles motion dynamics from visual style, enabling robust visual imitation from observations even in the presence of visual mismatches between expert and agent environments. By training policies on event streams, we achieve invariance to appearance-based distractors without requiring computationally expensive and environment-specific data augmentation techniques. Experiments across the DeepMind Control Suite and the Adroit platform for dynamic dexterous manipulation show the efficacy of our method. Our code is publicly available at Eb-LAIfO.

Figures

Figures reproduced from arXiv: 2505.18899 by the authors.

Figure 1
Figure 1. Summary of EB-LAIfO. Given the RGB sequence, the corresponding events stream is extracted following eq. (2). A [PITH_FULL_IMAGE:figures/full_fig_p004_1.png] view at source ↗
Figure 2
Figure 2. Examples scenes from the expert and target domain, [PITH_FULL_IMAGE:figures/full_fig_p004_2.png] view at source ↗
Figure 3
Figure 3. Learning curves for the results in Table I. Plots show [PITH_FULL_IMAGE:figures/full_fig_p005_3.png] view at source ↗
Figures from the paper (4 more)
Figure 4
Figure 4. Figure 4: Learning curves for the results described in Table II. [PITH_FULL_IMAGE:figures/full_fig_p006_4.png]
Figure 5
Figure 5. Figure 5: Adroit environments used for the experiments in [PITH_FULL_IMAGE:figures/full_fig_p006_5.png]
Figure 6
Figure 6. Figure 6: Visualization of the resulting event stream with varying [PITH_FULL_IMAGE:figures/full_fig_p006_6.png]
Figure 7
Figure 7. Figure 7: Ablation study with different σ noise values. Each policy is evaluated as in Table I. We report mean and standard deviation across the last 100 evaluations for each run. In these experiments, our transformation function ζ becomes x¯t(u, v) = ⎧⎪⎪⎪⎪ ⎨ ⎪⎪⎪⎪⎩ +1 if Lt(u, v…

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

41 extracted references · 32 canonical work pages

  1. [1]

    Visual imitation learning with patch rewards,

    M. Liu, T. He, W. Zhang, Y . Shuicheng, and Z. Xu, “Visual imitation learning with patch rewards,” inInternational Conference on Learning Representations, 2022

  2. [2]

    Adversarial imitation learning from visual observations using latent information,

    V . Giammarino, J. Queeney, and I. Paschalidis, “Adversarial imitation learning from visual observations using latent information,” Transactions on Machine Learning Research, 2024. [Online]. Available: https://openreview.net/forum?id=ydPHjgf6h0

  3. [3]

    Third-person imitation learning,

    B. C. Stadie, P. Abbeel, and I. Sutskever, “Third-person imitation learning,”arXiv preprint arXiv:1703.01703, 2017

  4. [4]

    Domain-adversarial and- conditional state space model for imitation learning,

    R. Okumura, M. Okada, and T. Taniguchi, “Domain-adversarial and- conditional state space model for imitation learning,” in2020 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS). IEEE, 2020, pp. 5179–5186

  5. [5]

    Domain-robust visual imitation learning with mutual information constraints,

    E. Cetin and O. Celiktutan, “Domain-robust visual imitation learning with mutual information constraints,” inInternational Conference on Learning Representations, 2020

  6. [6]

    Domain adaptive imitation learning with visual observation,

    S. Choi, S. Han, W. Kim, J. Chae, W. Jung, and Y . Sung, “Domain adaptive imitation learning with visual observation,” inAdvances in Neural Information Processing Systems, 2023

  7. [7]

    Visually robust adversarial imitation learning from videos with contrastive learning,

    V . Giammarino, J. Queeney, and I. C. Paschalidis, “Visually robust adversarial imitation learning from videos with contrastive learning,” arXiv preprint arXiv:2407.12792, 2024

  8. [8]

    The organization of the retina and visual system,

    H. Kolb, E. Fernandez, and R. Nelson, “The organization of the retina and visual system,”Salt Lake City (UT): University of Utah Health Sciences Center, 1995

Show all 41 references
  1. [9]

    Deepmind control suite,

    Y . Tassa, Y . Doron, A. Muldal, T. Erez, Y . Li, D. d. L. Casas, D. Budden, A. Abdolmaleki, J. Merel, A. Lefrancqet al., “Deepmind control suite,” arXiv preprint arXiv:1801.00690, 2018

  2. [10]

    Manipulators and manipulation in high dimensional spaces,

    V . Kumar, “Manipulators and manipulation in high dimensional spaces,” Ph.D. dissertation, University of Washington, Seattle, 2016. [Online]. Available: https://digital.lib.washington.edu/researchworks/ handle/1773/38104

  3. [11]

    Generative adversarial imitation learning,

    J. Ho and S. Ermon, “Generative adversarial imitation learning,” Advances in Neural Information Processing Systems, vol. 29, 2016

  4. [12]

    Learning robust rewards with adversarial inverse reinforcement learning,

    J. Fu, K. Luo, and S. Levine, “Learning robust rewards with adversarial inverse reinforcement learning,”arXiv preprint arXiv:1710.11248, 2017

  5. [13]

    Learning agents for uncertain environments,

    S. Russell, “Learning agents for uncertain environments,” inProceed- ings of the Annual Conference on Computational Learning Theory, 1998, pp. 101–103

  6. [14]

    Algorithms for inverse reinforcement learning

    A. Y . Ng, S. Russellet al., “Algorithms for inverse reinforcement learning.” inInternational Conference on Machine Learning, vol. 1, 2000, p. 2

  7. [15]

    Apprenticeship learning via inverse rein- forcement learning,

    P. Abbeel and A. Y . Ng, “Apprenticeship learning via inverse rein- forcement learning,” inInternational Conference on Machine Learning, 2004, p. 1

  8. [16]

    Maximum entropy inverse reinforcement learning

    B. D. Ziebart, A. L. Maas, J. A. Bagnell, A. K. Deyet al., “Maximum entropy inverse reinforcement learning.” inAAAI Conference on Artificial Intelligence, vol. 8. Chicago, IL, USA, 2008, pp. 1433–1438

  9. [17]

    Learning belief representations for imitation learning in POMDPs,

    T. Gangwani, J. Lehman, Q. Liu, and J. Peng, “Learning belief representations for imitation learning in POMDPs,” inUncertainty in Artificial Intelligence. PMLR, 2020, pp. 1061–1071

  10. [18]

    Visual adversarial imitation learning using variational models,

    R. Rafailov, T. Yu, A. Rajeswaran, and C. Finn, “Visual adversarial imitation learning using variational models,”Advances in Neural Information Processing Systems, vol. 34, pp. 3016–3028, 2021

  11. [19]

    Generative adversarial imitation from observation,

    F. Torabi, G. Warnell, and P. Stone, “Generative adversarial imitation from observation,”arXiv preprint arXiv:1807.06158, 2018

  12. [20]

    Imitation learning from observations by minimizing inverse dynamics disagreement,

    C. Yang, X. Ma, W. Huang, F. Sun, H. Liu, J. Huang, and C. Gan, “Imitation learning from observations by minimizing inverse dynamics disagreement,”Advances in Neural Information Processing Systems, vol. 32, 2019

  13. [21]

    On the guaranteed almost equivalence between imitation learning from observation and demonstration,

    Z. Cheng, L. Liu, A. Liu, H. Sun, M. Fang, and D. Tao, “On the guaranteed almost equivalence between imitation learning from observation and demonstration,”IEEE Transactions on Neural Networks and Learning Systems, 2021

  14. [22]

    Image-to-image translation with conditional adversarial networks,

    P. Isola, J.-Y . Zhu, T. Zhou, and A. A. Efros, “Image-to-image translation with conditional adversarial networks,” inProceedings of the IEEE Conference on Computer Vision and Pattern Recognition, 2017, pp. 1125–1134

  15. [23]

    Unpaired image-to-image translation using cycle-consistent adversarial networks,

    J.-Y . Zhu, T. Park, P. Isola, and A. A. Efros, “Unpaired image-to-image translation using cycle-consistent adversarial networks,” inProceedings of the IEEE International Conference on Computer Vision, 2017, pp. 2223–2232

  16. [24]

    Domain adaptive imitation learning,

    K. Kim, Y . Gu, J. Song, S. Zhao, and S. Ermon, “Domain adaptive imitation learning,” inInternational Conference on Machine Learning. PMLR, 2020, pp. 5286–5295

  17. [25]

    Cross-domain imitation from observations,

    D. S. Raychaudhuri, S. Paul, J. Vanbaar, and A. K. Roy-Chowdhury, “Cross-domain imitation from observations,” inInternational Confer- ence on Machine Learning. PMLR, 2021, pp. 8902–8912

  18. [26]

    Imitation from observation: Learning to imitate behaviors from raw video via context translation,

    Y . Liu, A. Gupta, P. Abbeel, and S. Levine, “Imitation from observation: Learning to imitate behaviors from raw video via context translation,” inIEEE International Conference on Robotics and Automation (ICRA). IEEE, 2018, pp. 1118–1125

  19. [27]

    Time-contrastive networks: Self-supervised learning from video,

    P. Sermanet, C. Lynch, Y . Chebotar, J. Hsu, E. Jang, S. Schaal, S. Levine, and G. Brain, “Time-contrastive networks: Self-supervised learning from video,” in2018 IEEE International Conference on Robotics and Automation (ICRA). IEEE, 2018, pp. 1134–1141

  20. [28]

    Avid: Learning multi-stage tasks via pixel-level translation of human videos,

    L. Smith, N. Dhawan, M. Zhang, P. Abbeel, and S. Levine, “Avid: Learning multi-stage tasks via pixel-level translation of human videos,” Robotics: Science and Systems XVI, 2020

  21. [29]

    Opportunities and challenges from using animal videos in reinforcement learning for navigation,

    V . Giammarino, J. Queeney, L. C. Carstensen, M. E. Hasselmo, and I. C. Paschalidis, “Opportunities and challenges from using animal videos in reinforcement learning for navigation,”IFAC-PapersOnLine, vol. 56, no. 2, pp. 9056–9061, 2023

  22. [30]

    Slomo: A general system for legged robot motion imitation from casual videos,

    J. Z. Zhang, S. Yang, G. Yang, A. L. Bishop, S. Gurumurthy, D. Ramanan, and Z. Manchester, “Slomo: A general system for legged robot motion imitation from casual videos,”IEEE Robotics and Automation Letters, 2023

  23. [31]

    Event- based vision: A survey,

    G. Gallego, T. Delbrück, G. Orchard, C. Bartolozzi, B. Taba, A. Censi, S. Leutenegger, A. J. Davison, J. Conradt, K. Daniilidiset al., “Event- based vision: A survey,”IEEE transactions on pattern analysis and machine intelligence, vol. 44, no. 1, pp. 154–180, 2020

  24. [32]

    A recurrent yolov8-based framework for event-based object detection,

    D. A. Silva, K. Smagulova, A. Elsheikh, M. E. Fouda, and A. M. Eltawil, “A recurrent yolov8-based framework for event-based object detection,”Frontiers in Neuroscience, vol. 18, p. 1477979, 2025

  25. [33]

    Event- based agile object catching with a quadrupedal robot,

    B. Forrai, T. Miki, D. Gehrig, M. Hutter, and D. Scaramuzza, “Event- based agile object catching with a quadrupedal robot,” in2023 IEEE International Conference on Robotics and Automation (ICRA). IEEE, 2023, pp. 12 177–12 183

  26. [34]

    Monocular event-based vision for obstacle avoidance with a quadrotor,

    A. Bhattacharya, M. Cannici, N. Rao, Y . Tao, V . Kumar, N. Matni, and D. Scaramuzza, “Monocular event-based vision for obstacle avoidance with a quadrotor,”arXiv preprint arXiv:2411.03303, 2024

  27. [35]

    Frequency-aware event-based video deblurring for real-world motion blur,

    T. Kim, H. Cho, and K.-J. Yoon, “Frequency-aware event-based video deblurring for real-world motion blur,” inProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2024, pp. 24 966–24 976

  28. [36]

    Deep visual odometry with events and frames,

    R. Pellerito, M. Cannici, D. Gehrig, J. Belhadj, O. Dubois-Matra, M. Casasco, and D. Scaramuzza, “Deep visual odometry with events and frames,” in2024 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS). IEEE, 2024, pp. 8966–8973

  29. [37]

    A divergence minimization perspective on imitation learning methods,

    S. K. S. Ghasemipour, R. Zemel, and S. Gu, “A divergence minimization perspective on imitation learning methods,” inProceedings of the Conference on Robot Learning. PMLR, 2020, pp. 1259–1277

  30. [38]

    Deterministic policy gradient algorithms,

    D. Silver, G. Lever, N. Heess, T. Degris, D. Wierstra, and M. Riedmiller, “Deterministic policy gradient algorithms,” inInternational Conference on Machine Learning. Pmlr, 2014, pp. 387–395

  31. [39]

    On the use of expert data to imitate behavior and accelerate reinforcement learning,

    V . Giammarino, “On the use of expert data to imitate behavior and accelerate reinforcement learning,” Ph.D. dissertation, Boston University, 2024

  32. [40]

    Continuous control with deep reinforcement learning,

    T. P. Lillicrap, J. J. Hunt, A. Pritzel, N. Heess, T. Erez, Y . Tassa, D. Silver, and D. Wierstra, “Continuous control with deep reinforcement learning,”arXiv preprint arXiv:1509.02971, 2015

  33. [41]

    Vrl3: A data-driven framework for visual deep reinforcement learning,

    C. Wang, X. Luo, K. Ross, and D. Li, “Vrl3: A data-driven framework for visual deep reinforcement learning,”Advances in Neural Information Processing Systems, vol. 35, pp. 32 974–32 988, 2022

Pith tools

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