REVIEW 3 major objections 5 minor 68 references
TeLoGraF: Temporal Logic Planning via Graph-encoded Flow Matching
T0 review · 3 major / 5 minor · reviewed 2026-08-16 · deepseek-v4-flash
Pith's one-line read This paper claims that a single learned generative model can take any Signal Temporal Logic (STL) specification and an initial state and output a trajectory that satisfies it—the first general STL-conditioned planner.
desk verdict A useful STL-conditioned generative planner and dataset, but the 'general STL' claim and the maze data protocol need to be tightened before publication. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing object is the STL syntax tree recast as a directed graph with child-to-parent edges, where each node holds an 8-dimensional feature vector (operator type; start and end times, with a default of -1; object coordinates and radius or side length; and a binary flag marking a left child of an Until operator). A multi-layer GNN with a permutation-invariant aggregation performs message passing over this graph and reads out a fixed-dimension embedding; that embedding, concatenated with the initial state, conditions a temporal U-Net trained with the flow-matching loss $\mathcal{L}_{\mathrm{FM}} = \mathbb{E}_{t,X_0,X_1}\|H_\omega(F_\theta(G), x_0, t, X_t) - (X_1 - X_0)\|^2$, where $X_t = tX_1 + (1-t)X_0$. Generation integrates the learned velocity field $\frac{d}{dt}\psi(t,X) = H_\omega(F_\theta(G), x_0, t, \psi(t,X))$ by Euler steps starting from Gaussian noise, and the ODE solution at $t=1$ is the planned trajectory. The expressiveness argument rests on the Weisfeiler–Leman test being complete for trees, which the paper uses to conclude that distinct STL syntax trees receive distinct embeddings.
What would settle it
Build a validation set of STL formulas whose syntax trees go deeper than the four templates—for example, nested $\Box_{[a,b]} \Diamond_{[c,d]}$ combinations over conjunctions of reach and avoid predicates—and measure the satisfaction rate of TeLoGraF's sampled trajectories in one benchmark environment. If the rate collapses to the level of the sequence-encoder baselines, the claim that graph encoding generalizes across STL structure is refuted; if satisfaction already drops when time windows are narrowed by a small margin below training values, the model's scope is narrower than the 'general STL' claim.
Extended reading notes
Core claim
The central claim is that an STL formula's syntax tree can be turned into a directed graph—each operator and atomic proposition becomes a node carrying features for operator type, time interval, object geometry, and Until-child role—and a graph neural network embedding of that graph suffices to condition a flow-matching trajectory generator, so that trajectories drawn from $p_\theta(\tau \mid x_0, \phi)$ satisfy the specification, $\tau, 0 \models \phi$. The authors justify the encoding by noting that the Weisfeiler–Leman graph test is complete for trees, so a GNN can in principle distinguish distinct STL syntax trees. Empirically, the GNN-conditioned model posts the highest STL satisfaction rates against guidance-based learning baselines and classical gradient and sampling planners across five environments, and with only ten ODE integration steps it retains most of its satisfaction while running over a hundred times faster than classical baselines in the Franka Panda environment. The paper further claims that graph encoding generalizes better than sequence encoders to unseen and synthetically augmented STL structures.
Load-bearing premise
The claim of generality rests on the four procedural STL templates (single-goal, multi-goal, sequential, partial) standing in for all practically useful STL specifications, so formulas outside these patterns, or with time constraints tighter than the demonstration distribution, may not be satisfiable by the learned model.
Editorial extensions
If this is right
- A single trained model covers the four STL templates and formulas built from them, so a user can query new specifications at test time without retraining.
- Because generation is a short ODE solve rather than an optimization loop, inference is fast enough for real-time use; the paper reports 10 to 100 times speedups and, with ten flow steps, roughly 123.6 times faster planning than the gradient baseline on the 7-DoF Franka Panda arm at a higher satisfaction rate.
- The approach does not require differentiable dynamics, so it applies to maze navigation and other non-differentiable systems as long as demonstration trajectories can be collected.
- Graph-based encoding propagates time intervals and temporal ordering better than sequence encoders, which is where the satisfaction gains over GRU and Transformer baselines concentrate, namely sequential and partial-order templates.
Reading between the lines
- If the four templates capture most practical STL tasks, the bottleneck shifts to demonstration collection: the model is only as broad as the solver that produced its training trajectories, so better offline datasets could extend the same graph-conditioned generator to new environments.
- The maze demonstrations were made by planning a path and then inferring time intervals that make it satisfy the formula, so a testable consequence is that the model learns comfortable time margins and satisfaction should degrade sharply when queried with time windows narrower than any seen in training.
- The graph encoder is agnostic to the generative backbone and the operator vocabulary, so the same conditioning could steer diffusion or consistency samplers, and the operator set could be extended past reach and avoid to predicates over continuous signals.
- Coupling TeLoGraF's fast proposals with a classical STL verifier as a filter would yield an anytime planner with soundness guarantees on accepted trajectories, addressing the paper's stated lack of guarantees.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes TeLoGraF, a conditional generative model for trajectory planning under Signal Temporal Logic (STL) specifications. STL formulas are encoded as syntax-tree graphs and processed by a GNN, and a flow-matching model generates trajectories conditioned on the STL embedding and initial state. The authors identify four STL templates (single-goal, multi-goal, sequential, partial), generate roughly 200K specifications with paired demonstration trajectories in five simulation environments (Linear, Dubins, PointMaze, AntMaze, Franka Panda), and compare TeLoGraF against classical planners (Grad, CEM) and learning-based baselines (CTG, LTLDoG). The paper claims state-of-the-art STL satisfaction rates, 10-100x faster inference than classical methods, and the ability to handle 'general STL specifications.'
Significance. If the central claims were fully supported, TeLoGraF would be a valuable contribution: it is among the first learned models to take STL syntax as input and generate trajectories, and the GNN encoding of STL syntax trees is a sensible and well-motivated design choice. The dataset of 200K STL-conditioned demonstrations, if released, could be a useful benchmark for the community. The paper also provides a theoretical argument for why GNNs can distinguish STL syntax trees and runs a systematic encoder comparison. However, the evidence falls short of the 'general STL' claim: the four templates are a narrow fragment of the STL grammar, the per-template satisfaction on complex templates is low by the paper's own figures, the best-of-1024 evaluation protocol without variance estimates is optimistic, and the maze demonstrations are generated by fitting time intervals to pre-planned trajectories rather than respecting fixed user-specified deadlines. The core methodology is defensible for the four templates, but the headline claims need substantial revision or additional evidence.
major comments (3)
- [Sec. 4.2, Eq. (3); Sec. 5.4, Fig. 7; Sec. 4.1] The paper's central claim that TeLoGraF handles 'general STL specifications' (Abstract; Sec. 4.1) is not supported by the presented grammar and results. Equation (3) covers only four templates whose atomic propositions are restricted to reach/avoid predicates, a small fragment of the STL grammar in Eq. (1) that includes arbitrary predicates, nested Until, and unbounded combinations. More importantly, the paper's own Fig. 7 shows that validation satisfaction for templates II-IV is 'relatively low' on Linear, Dubins, and Franka Panda; for Dubins, Sec. 5.2 reports a validation satisfaction rate of 0.45 for TeLoGraF even with best-of-1024 selection, and per-template rates for sequential and partial are lower. The expressiveness argument in Sec. 4.4 only shows that a GNN can distinguish different syntax trees, not that the generated trajectories satisfy the STL formula. The abstract and introduction should be revised to claim handling of 'four common templates' rather than 'general STL,' or the evaluation should include formulas outside these templates.
- [Appendix A.1.3] The maze data pipeline undermines the evaluation of time constraints. Appendix A.1.3 states that, after planning a trajectory, the authors 'randomly infer the possible time intervals for the goal-reaching sub-formulas and run post-verification to ensure the trajectory satisfies this STL.' This means the STL formulas in PointMaze and AntMaze are constructed to be feasible for already-generated trajectories, so the model is never tested on user-specified deadlines that are fixed in advance. Consequentially, the reported high satisfaction rates in maze environments do not measure the model's ability to satisfy exact temporal requirements. The experiments should either fix time intervals before planning or report maze results separately with this feasibility-by-construction caveat.
- [Sec. 5, Metrics] The evaluation protocol is optimistic and lacks statistical grounding. The paper states that for each STL, 1024 trajectories are sampled and the one with the highest STL score is selected as the final trajectory. Reporting best-of-1024 satisfaction without error bars, multiple seeds, or any statistical comparison makes the claimed superiority over baselines fragile; for instance, the differences between TeLoGraD, TeLoGraF, TreeLSTM, and the guidance-based baselines in Fig. 4 could be within sampling noise under this protocol. The authors should report mean and variance over multiple random seeds, report both mean and best-over-sample statistics, and describe how many STL specifications and seeds are used in each reported number.
minor comments (5)
- [Sec. 3.2] There is a typo: 'integrating the predicted vector field over over time' should read 'over time.'
- [Appendix A.1.2] The last sentence says 'The loss is similar to Eq. (8),' but Eq. (8) is the Dubins dynamics; the intended reference appears to be Eq. (7), the gradient-based loss.
- [Appendix C.4] The section heading reads 'AntMaze,' but Figures 31-37 are labeled 'PointMaze environment'; this mismatch should be corrected.
- [Eq. (3) and surrounding text] The explanation of phi_reach's stay condition says the robot stays for the time interval [ta + tc, tb + td], but the grammar only defines G[tc,td] after F[ta,tb]; the relationship between the two intervals should be clarified or corrected.
- [Sec. 5, Metrics and Fig. 6] Figure 6 reports training and validation satisfaction for different ODE steps without confidence intervals; adding error bars would make the claim that performance 'does not drop until 10 steps' more robust.
Circularity Check
Maze data pipeline fits STL time intervals to demonstrations, making the maze satisfaction results partially circular; otherwise the method is an empirical pipeline with no derivation to be circular.
-
fitted input called prediction
[Appendix A.1.3 (PointMaze/AntMaze data collection)]
"we first generate the skeleton of the STL syntax but leave the time intervals as placeholders; then, we use a planning algorithm to find waypoints and then use a PD goal-reaching controller to collect trajectories. After the generation of the trajectories, we first ensure it reaches the final destination, and then we evaluate the robustness score on the trajectory without considering the time intervals. If the robustness score is positive, we randomly infer the possible time intervals for the goal-reaching sub-formulas and run post-verification to ensure the trajectory satisfies this STL."
In PointMaze and AntMaze, the STL specification is not fixed before planning; its time intervals are inferred after a trajectory has been collected, so the paired STL is constructed from the output trajectory rather than given as an external task. Training and evaluating on these pairs means the model is asked to reproduce trajectories that already match STLs reverse-engineered to fit that very trajectory distribution. The high maze satisfaction rates therefore do not demonstrate ability to satisfy independently user-specified temporal constraints; they reflect that the temporal constraints were fitted to the demonstrations by construction.
full rationale
The paper is primarily an empirical learning pipeline, not a mathematical derivation, so most of the usual circular-derivation patterns do not apply. There is no load-bearing self-citation chain, no imported uniqueness theorem from the authors' prior work, and no ansatz smuggled in via citation: the GNN-expressiveness argument in Sec. 4.4 appeals to external results (Xu et al. 2018; Kiefer 2020), which are independent. The four STL templates in Eq. (3) are a narrow fragment of the full STL grammar of Eq. (1), and Sec. 5.4 candidly reports that all models perform 'relatively low' on templates II-IV on Linear, Dubins, and Franka Panda; Fig. 6 shows Dubins validation satisfaction of 0.45 even with best-of-1024 selection. These are limitations on the generality of the central claim, and the Limitations paragraph acknowledges degraded performance on complex or out-of-distribution STLs, but they are correctness/scope concerns, not circularity. The one genuinely circular element is the maze data-generation protocol in Appendix A.1.3: time intervals are inferred post hoc to make collected trajectories satisfy the STL, so the model's high satisfaction on PointMaze and AntMaze is partly an artifact of fitting the specification to the demonstration data. This is a fitted-input-called-prediction pattern affecting a substantial portion of the experimental evidence, but it does not make the entire method circular, since the Linear, Dubins, and Franka Panda benchmarks fix the STL before solving and the flow-matching training itself is not tautological. Score 5 reflects this partial, evaluation-level circularity rather than a derivation-level collapse.
Assumptions & free parameters
free parameters (5)
- Robustness margin threshold in Eq. (7) =
0.5
- Control regularization weights c1, c2 in Eq. (7) =
not specified
- Flow matching ODE steps Ns =
100
- Number of sampled trajectories per STL at evaluation =
1024
- STL template and object-count distribution =
4 templates, 0-6 obstacles, 0-4 goals
assumptions (5)
- standard math STL satisfaction and robustness semantics as defined in Donze and Maler (2010) and Donze et al. (2013)
- domain assumption GNN expressiveness is bounded by the 1-WL test (Xu et al. 2018), and the WL test is complete for trees (Kiefer 2020), so GNNs can distinguish any two STL syntax trees
- ad hoc to paper The four templates in Eq. (3) cover the practically relevant and "general" STL specifications
- domain assumption High-quality demonstrations can be produced by the chosen off-the-shelf solvers
- ad hoc to paper STL time intervals can be inferred from a planned trajectory to make the formula satisfiable (maze domains)
Cite this review
Pith. "Pith review of TeLoGraF: Temporal Logic Planning via Graph-encoded Flow Matching." pith.science (2026). https://pith.science/paper/ACVKITZJ
@misc{pith2026250500562,
author = {Pith},
title = {Pith review of: TeLoGraF: Temporal Logic Planning via Graph-encoded Flow Matching},
year = {2026},
howpublished = {\url{https://pith.science/paper/ACVKITZJ}},
note = {Machine review of arXiv:2505.00562}
}
read the original abstract
Learning to solve complex tasks with signal temporal logic (STL) specifications is crucial to many real-world applications. However, most previous works only consider fixed or parametrized STL specifications due to the lack of a diverse STL dataset and encoders to effectively extract temporal logic information for downstream tasks. In this paper, we propose TeLoGraF, Temporal Logic Graph-encoded Flow, which utilizes Graph Neural Networks (GNN) encoder and flow-matching to learn solutions for general STL specifications. We identify four commonly used STL templates and collect a total of 200K specifications with paired demonstrations. We conduct extensive experiments in five simulation environments ranging from simple dynamical models in the 2D space to high-dimensional 7DoF Franka Panda robot arm and Ant quadruped navigation. Results show that our method outperforms other baselines in the STL satisfaction rate. Compared to classical STL planning algorithms, our approach is 10-100X faster in inference and can work on any system dynamics. Besides, we show our graph-encoding method's capability to solve complex STLs and robustness to out-distribution STL specifications. Code is available at https://github.com/mengyuest/TeLoGraF
Figures
Figures from the paper (46 more)
Reference graph
Works this paper leans on
-
[1]
write newline
" write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 global.max substring 't := if while FUNCTION format.date year duplicate empty "emp...
-
[2]
T., Baierl, M., Koert, D., and Peters, J
Carvalho, J., Le, A. T., Baierl, M., Koert, D., and Peters, J. Motion planning diffusion: Learning and planning of robot motions with diffusion models. In 2023 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS), pp.\ 1916--1923. IEEE, 2023
work page 2023
-
[3]
Chang, W.-D., Higuera, J. C. G., Fujimoto, S., Meger, D., and Dudek, G. Il-flow: Imitation learning from observation using normalizing flows. arXiv preprint arXiv:2205.09251, 2022
arXiv 2022
-
[4]
Simple hierarchical planning with diffusion
Chen, C., Deng, F., Kawaguchi, K., Gulcehre, C., and Ahn, S. Simple hierarchical planning with diffusion. arXiv preprint arXiv:2401.02644, 2024
arXiv 2024
-
[5]
Boosting continuous control with consistency policy
Chen, Y., Li, H., and Zhao, D. Boosting continuous control with consistency policy. arXiv preprint arXiv:2310.06343, 2023
arXiv 2023
-
[6]
Diffusion policy: Visuomotor policy learning via action diffusion
Chi, C., Xu, Z., Feng, S., Cousineau, E., Du, Y., Burchfiel, B., Tedrake, R., and Song, S. Diffusion policy: Visuomotor policy learning via action diffusion. The International Journal of Robotics Research, pp.\ 02783649241273668, 2023
2023
-
[7]
Empirical evaluation of gated recurrent neural networks on sequence modeling
Chung, J., Gulcehre, C., Cho, K., and Bengio, Y. Empirical evaluation of gated recurrent neural networks on sequence modeling. arXiv preprint arXiv:1412.3555, 2014
arXiv 2014
-
[8]
Clarke, E. M. and Emerson, E. A. Design and synthesis of synchronization skeletons using branching time temporal logic. In Workshop on logic of programs, pp.\ 52--71. Springer, 1981
work page 1981
Show all 68 references
-
[9]
and Bai, Y
Coumans, E. and Bai, Y. Pybullet quickstart guide, 2021
2021
-
[10]
and Fan, C
Dawson, C. and Fan, C. Robust counterexample-guided optimization for planning from differentiable temporal logic. In 2022 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS), pp.\ 7205--7212. IEEE, 2022
2022
-
[11]
J., Lee, S
de Lazcano, R., Andreas, K., Tai, J. J., Lee, S. R., and Terry, J. Gymnasium robotics, 2024. URL http://github.com/Farama-Foundation/Gymnasium-Robotics
2024
-
[12]
and Maler, O
Donz \'e , A. and Maler, O. Robust satisfaction of temporal logic over real-valued signals. Formal Modeling and Analysis of Timed Systems, pp.\ 92, 2010
2010
-
[13]
Efficient robust monitoring for stl
Donz \'e , A., Ferrere, T., and Maler, O. Efficient robust monitoring for stl. In Computer Aided Verification: 25th International Conference, CAV 2013, pp.\ 264--279. Springer, 2013
2013
-
[14]
Scaling safe multi-agent control for signal temporal logic specifications
Eappen, J., Xiong, Z., Patel, D., Bera, A., and Jagannathan, S. Scaling safe multi-agent control for signal temporal logic specifications. arXiv preprint arXiv:2501.05639, 2025
2025 arXiv
-
[15]
E., Girard, A., Kress-Gazit, H., and Pappas, G
Fainekos, G. E., Girard, A., Kress-Gazit, H., and Pappas, G. J. Temporal logic motion planning for dynamic robots. Automatica, 45 0 (2): 0 343--352, 2009
2009
-
[16]
R., Eppner, C., Lozano-P \'e rez, T., Kaelbling, L
Fang, X., Garrett, C. R., Eppner, C., Lozano-P \'e rez, T., Kaelbling, L. P., and Fox, D. Dimsam: Diffusion models as samplers for task and motion planning under partial observability. In 2024 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS), pp.\ 141...
2024
-
[17]
Ltldog: Satisfying temporally-extended symbolic constraints for safe diffusion-based planning
Feng, Z., Luan, H., Goyal, P., and Soh, H. Ltldog: Satisfying temporally-extended symbolic constraints for safe diffusion-based planning. arXiv preprint arXiv:2405.04235, 2024
2024 arXiv
-
[18]
and Lenssen, J
Fey, M. and Lenssen, J. E. Fast graph representation learning with pytorch geometric. arXiv preprint arXiv:1903.02428, 2019
1903 arXiv
-
[19]
Ltlmop: Experimenting with language, temporal logic and robot control
Finucane, C., Jing, G., and Kress-Gazit, H. Ltlmop: Experimenting with language, temporal logic and robot control. In 2010 IEEE/RSJ International Conference on Intelligent Robots and Systems, pp.\ 1988--1993. IEEE, 2010
2010
-
[20]
D4rl: Datasets for deep data-driven reinforcement learning
Fu, J., Kumar, A., Nachum, O., Tucker, G., and Levine, S. D4rl: Datasets for deep data-driven reinforcement learning. arXiv preprint arXiv:2004.07219, 2020
2004 arXiv
-
[21]
R., and De Luca, A
Gaz, C., Cognetti, M., Oliva, A., Giordano, P. R., and De Luca, A. Dynamic identification of the franka emika panda robot with retrieval of feasible parameters using penalty-based optimization. IEEE Robotics and Automation Letters, 4 0 (4): 0 4147--4154, 2019
2019
-
[22]
Temporal logic specification-conditioned decision transformer for offline safe reinforcement learning
Guo, Z., Zhou, W., and Li, W. Temporal logic specification-conditioned decision transformer for offline safe reinforcement learning. In Forty-first International Conference on Machine Learning, 2024
2024
-
[23]
Neural controller synthesis for signal temporal logic specifications using encoder-decoder structured networks
Hashimoto, W., Hashimoto, K., Kishida, M., and Takai, S. Neural controller synthesis for signal temporal logic specifications using encoder-decoder structured networks. arXiv preprint arXiv:2212.05200, 2022
2022 arXiv
-
[24]
Deepstl: from english requirements to signal temporal logic
He, J., Bartocci, E., Ni c kovi \'c , D., Isakovic, H., and Grosu, R. Deepstl: from english requirements to signal temporal logic. In Proceedings of the 44th International Conference on Software Engineering, pp.\ 610--622, 2022
2022
-
[25]
Denoising diffusion probabilistic models
Ho, J., Jain, A., and Abbeel, P. Denoising diffusion probabilistic models. Advances in neural information processing systems, 2020
2020
-
[26]
Diffusionseeder: Seeding motion optimization with diffusion for rapid motion planning
Huang, H., Sundaralingam, B., Mousavian, A., Murali, A., Goldberg, K., and Fox, D. Diffusionseeder: Seeding motion optimization with diffusion for rapid motion planning. arXiv preprint arXiv:2410.16727, 2024
2024 arXiv
-
[27]
and Abate, A
Jackermeier, M. and Abate, A. Deepltl: Learning to efficiently satisfy complex ltl specifications. arXiv preprint arXiv:2410.04631, 2024
2024 arXiv
-
[28]
B., and Levine, S
Janner, M., Du, Y., Tenenbaum, J. B., and Levine, S. Planning with diffusion for flexible behavior synthesis. arXiv preprint arXiv:2205.09991, 2022
2022 arXiv
-
[29]
Kapoor, P., Balakrishnan, A., and Deshmukh, J. V. Model-based reinforcement learning from signal temporal logic specifications. arXiv preprint arXiv:2011.04950, 2020
2011 arXiv
-
[30]
3d diffuser actor: Policy diffusion with 3d scene representations
Ke, T.-W., Gkanatsios, N., and Fragkiadaki, K. 3d diffuser actor: Policy diffusion with 3d scene representations. arXiv preprint arXiv:2402.10885, 2024
2024 arXiv
-
[31]
Power and limits of the Weisfeiler-Leman algorithm
Kiefer, S. Power and limits of the Weisfeiler-Leman algorithm. PhD thesis, Dissertation, RWTH Aachen University, 2020, 2020
2020
-
[32]
Adam: a method for stochastic optimization
Kingma, D. Adam: a method for stochastic optimization. arXiv preprint arXiv:1412.6980, 2014
2014 arXiv
-
[33]
Kipf, T. N. and Welling, M. Semi-supervised classification with graph convolutional networks. arXiv preprint arXiv:1609.02907, 2016
2016 arXiv
-
[34]
Specifying real-time properties with metric temporal logic
Koymans, R. Specifying real-time properties with metric temporal logic. Real-time systems, 2 0 (4): 0 255--299, 1990
1990
-
[35]
and Lin, H
Kurtz, V. and Lin, H. Mixed-integer programming for signal temporal logic with fewer binary variables. IEEE Control Systems Letters, 6: 0 2635--2640, 2022
2022
-
[36]
and Pavone, M
Leung, K. and Pavone, M. Semi-supervised trajectory-feedback controller synthesis for signal temporal logic specifications. In 2022 American Control Conference (ACC), pp.\ 178--185. IEEE, 2022
2022
-
[37]
Backpropagation through signal temporal logic specifications: Infusing logical structure into gradient-based methods
Leung, K., Ar \'e chiga, N., and Pavone, M. Backpropagation through signal temporal logic specifications: Infusing logical structure into gradient-based methods. The International Journal of Robotics Research, 42 0 (6): 0 356--370, 2023
2023
-
[38]
Hierarchical diffusion for offline decision making
Li, W., Wang, X., Jin, B., and Zha, H. Hierarchical diffusion for offline decision making. In International Conference on Machine Learning, pp.\ 20035--20064. PMLR, 2023
2023
-
[39]
Reinforcement learning with temporal logic rewards
Li, X., Vasile, C.-I., and Belta, C. Reinforcement learning with temporal logic rewards. In 2017 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS), pp.\ 3834--3839. IEEE, 2017
2017
-
[40]
Recurrent neural network controllers for signal temporal logic specifications subject to safety constraints
Liu, W., Mehdipour, N., and Belta, C. Recurrent neural network controllers for signal temporal logic specifications subject to safety constraints. IEEE Control Systems Letters, 6: 0 91--96, 2021
2021
-
[41]
Flow straight and fast: Learning to generate and transfer data with rectified flow
Liu, X., Gong, C., and Liu, Q. Flow straight and fast: Learning to generate and transfer data with rectified flow. arXiv preprint arXiv:2209.03003, 2022
2022 arXiv
-
[42]
Formalization of intersection traffic rules in temporal logic
Maierhofer, S., Moosbrugger, P., and Althoff, M. Formalization of intersection traffic rules in temporal logic. In 2022 IEEE Intelligent Vehicles Symposium (IV), pp.\ 1135--1144. IEEE, 2022
2022
-
[43]
and Nickovic, D
Maler, O. and Nickovic, D. Monitoring temporal properties of continuous signals. Formal Techniques, ModellingandAnalysis of Timed and Fault-Tolerant Systems, pp.\ 152, 2004
2004
-
[44]
and Fan, C
Meng, Y. and Fan, C. Signal temporal logic neural predictive control. IEEE Robotics and Automation Letters, 2023
2023
-
[45]
and Fan, C
Meng, Y. and Fan, C. Diverse controllable diffusion policy with signal temporal logic. IEEE Robotics and Automation Letters, 2024
2024
-
[46]
A., Xue, S., Chen, Y., and Xu, D
Mishra, U. A., Xue, S., Chen, Y., and Xu, D. Generative skill chaining: Long-horizon skill planning with diffusion models. In Conference on Robot Learning, pp.\ 2905--2925. PMLR, 2023
2023
-
[47]
and Hinton, G
Nair, V. and Hinton, G. E. Rectified linear units improve restricted boltzmann machines. In Proceedings of the 27th international conference on machine learning (ICML-10), pp.\ 807--814, 2010
2010
-
[48]
Pytorch: An imperative style, high-performance deep learning library
Paszke, A., Gross, S., Massa, F., Lerer, A., Bradbury, J., Chanan, G., Killeen, T., Lin, Z., Gimelshein, N., Antiga, L., et al. Pytorch: An imperative style, high-performance deep learning library. Advances in neural information processing systems, 32, 2019
2019
-
[49]
The temporal logic of programs
Pnueli, A. The temporal logic of programs. In 18th annual symposium on foundations of computer science (sfcs 1977), pp.\ 46--57. ieee, 1977
1977
-
[50]
Consistency policy: Accelerated visuomotor policies via consistency distillation
Prasad, A., Lin, K., Wu, J., Zhou, L., and Bohg, J. Consistency policy: Accelerated visuomotor policies via consistency distillation. arXiv preprint arXiv:2405.07503, 2024
2024 arXiv
-
[51]
Learning from demonstrations using signal temporal logic
Puranic, A., Deshmukh, J., and Nikolaidis, S. Learning from demonstrations using signal temporal logic. In Conference on Robot Learning, pp.\ 2228--2242. PMLR, 2021
2021
-
[52]
M., and Seshia, S
Raman, V., Donz \'e , A., Sadigh, D., Murray, R. M., and Seshia, S. A. Reactive synthesis from signal temporal logic specifications. In Proceedings of the 18th international conference on hybrid systems: Computation and control, pp.\ 239--248, 2015
2015
-
[53]
and Belta, C
Sadraddini, S. and Belta, C. Robust temporal logic model predictive control. In 2015 53rd Annual Allerton Conference on Communication, Control, and Computing (Allerton), pp.\ 772--779. IEEE, 2015
2015
-
[54]
Multi-agent motion planning from signal temporal logic specifications
Sun, D., Chen, J., Mitra, S., and Fan, C. Multi-agent motion planning from signal temporal logic specifications. IEEE Robotics and Automation Letters, 7 0 (2): 0 3451--3458, 2022
2022
-
[55]
S., Socher, R., and Manning, C
Tai, K. S., Socher, R., and Manning, C. D. Improved semantic representations from tree-structured long short-term memory networks. arXiv preprint arXiv:1503.00075, 2015
2015 arXiv
-
[56]
M., Ghosh, D., Walke, H., Pertsch, K., Black, K., Mees, O., Dasari, S., Hejna, J., Kreiman, T., Xu, C., et al
Team, O. M., Ghosh, D., Walke, H., Pertsch, K., Black, K., Mees, O., Dasari, S., Hejna, J., Kreiman, T., Xu, C., et al. Octo: An open-source generalist robot policy. arXiv preprint arXiv:2405.12213, 2024
2024 arXiv
-
[57]
Mujoco: A physics engine for model-based control
Todorov, E., Erez, T., and Tassa, Y. Mujoco: A physics engine for model-based control. In 2012 IEEE/RSJ international conference on intelligent robots and systems, pp.\ 5026--5033. IEEE, 2012
2012
-
[58]
Deep generative models in robotics: A survey on learning from multimodal demonstrations
Urain, J., Mandlekar, A., Du, Y., Shafiullah, M., Xu, D., Fragkiadaki, K., Chalvatzaki, G., and Peters, J. Deep generative models in robotics: A survey on learning from multimodal demonstrations. arXiv preprint arXiv:2408.04380, 2024
2024 arXiv
-
[59]
Sampling-based synthesis of maximally-satisfying controllers for temporal logic specifications
Vasile, C.-I., Raman, V., and Karaman, S. Sampling-based synthesis of maximally-satisfying controllers for temporal logic specifications. In 2017 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS), pp.\ 3840--3847. IEEE, 2017
2017
-
[60]
Attention is all you need
Vaswani, A. Attention is all you need. Advances in Neural Information Processing Systems, 2017
2017
-
[61]
Wongpiromsarn, T., Topcu, U., and Murray, R. M. Receding horizon temporal logic planning. IEEE Transactions on Automatic Control, 57 0 (11): 0 2817--2830, 2012
2012
-
[62]
Chaineddiffuser: Unifying trajectory diffusion and keypose prediction for robotic manipulation
Xian, Z., Gkanatsios, N., Gervet, T., Ke, T.-W., and Fragkiadaki, K. Chaineddiffuser: Unifying trajectory diffusion and keypose prediction for robotic manipulation. In 7th Annual Conference on Robot Learning, 2023
2023
-
[63]
How powerful are graph neural networks? arXiv preprint arXiv:1810.00826, 2018
Xu, K., Hu, W., Leskovec, J., and Jegelka, S. How powerful are graph neural networks? arXiv preprint arXiv:1810.00826, 2018
2018 arXiv
-
[64]
B., Lozano-P \'e rez, T., and Kaelbling, L
Yang, Z., Mao, J., Du, Y., Wu, J., Tenenbaum, J. B., Lozano-P \'e rez, T., and Kaelbling, L. P. Compositional diffusion-based continuous constraint solvers. arXiv preprint arXiv:2309.00966, 2023
2023 arXiv
-
[65]
3d diffusion policy
Ze, Y., Zhang, G., Zhang, K., Hu, C., Wang, M., and Xu, H. 3d diffusion policy. arXiv preprint arXiv:2403.03954, 2024
2024 arXiv
-
[66]
Flowpolicy: Enabling fast and robust 3d flow-based policy via consistency flow matching for robot manipulation
Zhang, Q., Liu, Z., Fan, H., Liu, G., Zeng, B., and Liu, S. Flowpolicy: Enabling fast and robust 3d flow-based policy via consistency flow matching for robot manipulation. arXiv preprint arXiv:2412.04987, 2024
2024 arXiv
-
[67]
PyTorch Kinematics , February 2024
Zhong, S., Power, T., Gupta, A., and Mitrano, P. PyTorch Kinematics , February 2024
2024
-
[68]
Guided conditional diffusion for controllable traffic simulation
Zhong, Z., Rempe, D., Xu, D., Chen, Y., Veer, S., Che, T., Ray, B., and Pavone, M. Guided conditional diffusion for controllable traffic simulation. In 2023 IEEE International Conference on Robotics and Automation (ICRA), pp.\ 3560--3566. IEEE, 2023
2023
Reviewed August 16, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.