REVIEW 1 major objections 5 minor 2 cited by
Revisiting Non-Acyclic GFlowNets in Discrete Environments
T0 review · 1 major / 5 minor · reviewed 2026-08-08 · deepseek-v4-flash
Pith's one-line read GFlowNets can train on cyclic graphs if the backward path is always available
desk verdict Solid, checkable theory for non-acyclic GFlowNets with one overbroad corollary that should be qualified 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 reversed random walk with a strictly positive backward policy $P_B$: starting at the sink $s_f$ and stepping backward through edges with probabilities $P_B(s \mid s')$, with $s_0$ absorbing. Its expected edge and state visit counts define the flows; Lemma 3.4 guarantees that the walk is absorbed almost surely with finite expected length. This makes flows finite, yields detailed balance $F(s \to s') = F(s') P_B(s \mid s')$, and turns standard GFlowNet losses into valid training objectives for cyclic graphs.
What would settle it
Take a finite cyclic graph with edges $s_0 \to a$, $a \to a$, and $a \to s_f$. Set $P_B(a \mid a) = 1$, $P_B(a \mid s_f) = 1$, and $P_B(s_0 \mid a) = 0$. Then the only finite trajectory from $s_0$ to $s_f$ has induced probability zero and the reversed walk is trapped in the self-loop, so the sum of induced trajectory probabilities is $0$ instead of $1$, violating Lemma 3.4 exactly when strict positivity is dropped.
Extended reading notes
Core claim
The central claim is Corollary 3.11: when a backward policy $P_B > 0$ is fixed, any loss from the acyclic GFlowNet literature can be used to learn the corresponding forward policy in a non-acyclic environment. The mechanism is to define flows not as probabilities of visiting an edge but as expected numbers of visits under the reversed random walk. Those expected visit counts are finite because strict positivity makes the reversed chain absorbing at $s_0$, and they satisfy detailed balance and flow matching. Consequently reward matching and uniqueness of the forward policy hold, and the positive backward distribution automatically keeps expected trajectory length finite. The paper additionally proves an exact identity linking expected trajectory length to total state flow, proposes state flow regularization as a practical way to control trajectory length when the backward policy is trained, and generalizes the GFlowNet/entropy-regularized-RL equivalence to cyclic graphs.
Load-bearing premise
Everything rests on the backward policy assigning strictly positive probability to every edge of the cyclic graph: if any edge has zero backward probability, the reversed random walk can fail to be absorbed, the induced trajectory measure can stop being a probability distribution, and the flows can diverge.
Editorial extensions
If this is right
- Any acyclic GFlowNet loss, such as flow matching, detailed balance, and trajectory balance, can train a correct sampler on a cyclic graph as long as the backward policy is fixed and strictly positive.
- Expected trajectory length equals the normalized total state flow exactly, so minimizing expected sampling length and minimizing total flow are the same optimization target.
- State flow regularization allows log-flow-scale losses to keep trajectory lengths bounded while preserving accurate reward matching, whereas flow-scale losses bias toward shorter trajectories but can degrade sampling fidelity.
- The equivalence between GFlowNets and entropy-regularized RL carries over to cyclic environments, so RL algorithms and insights transfer to non-acyclic GFlowNet training.
- When the backward policy is trained, log-flow-scale losses without regularization can let trajectory length grow without bound; regularization is needed to control it.
Reading between the lines
- The strict positivity condition suggests that any practical implementation must initialize the backward policy with full support and clip it away from zero during training; the paper's experiments indeed use a small epsilon for this purpose.
- Loss stability is best understood as a property of training dynamics when the backward policy is learnable, not as a requirement for the existence of reward-matching solutions, since a fixed positive backward policy makes all standard losses valid.
- The exact identity between expected trajectory length and normalized total flow gives a practical diagnostic: monitor normalized total flow during training as a proxy for sampling cost.
- The scaling hypothesis could be tested directly on other GFlowNet losses, such as subtrajectory balance or flow matching, by comparing the same loss in flow scale versus log-flow scale and measuring trajectory length and distribution error.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper develops a theory of GFlowNets on discrete graphs that may contain cycles. Starting from a strictly positive backward policy P_B, the authors define state and edge flows as expected visit counts under the induced trajectory distribution (Definition 3.5), prove that these flows satisfy flow matching and detailed balance (Proposition 3.6), establish a one-to-one correspondence between flows and pairs (P_B, F(s_f)) (Proposition 3.7), and show that every fixed P_B determines a unique forward policy P_F with the same trajectory distribution (Proposition 3.8). Proposition 3.10 gives a reward-matching condition, and Corollary 3.11 claims that any loss from the acyclic GFlowNet literature can be used to learn this P_F in the non-acyclic case. The paper further proposes a state-flow regularizer for training with a learnable backward policy, connects non-acyclic GFlowNets to entropy-regularized RL (Theorem 3.13), and reports experiments on cyclic hypergrids and permutation generation.
Significance. If the results are correct, the paper provides a substantially simpler and more intuitive foundation for non-acyclic GFlowNets than the measure-theoretic treatment of Brunswic et al. (2024), clarifies the central role of the backward policy, and supplies a practical regularizer that can control expected trajectory length. The appendices contain detailed proofs, and the paper includes code, exact computations on small environments, and a careful experimental comparison of loss scales, which are all strengths. The main practical corollary, however, is overstated as written, and this affects a load-bearing claim of the paper.
major comments (1)
- [Section 3.5, Corollary 3.11] Corollary 3.11 states that with a fixed P_B > 0, 'any loss from the acyclic GFlowNet literature (Bengio et al., 2021; Malkin et al., 2022; Bengio et al., 2023; Madan et al., 2023)' can be used to learn the corresponding forward policy P_F in the non-acyclic case. This is not true for the Flow Matching loss (Bengio et al., 2021), which is explicitly listed. FM is defined solely on edge/state flows and never involves P_B. In a cyclic graph, any edge flow satisfying the flow matching conditions (3) and the terminal condition F(x → s_f) = R(x) is a global FM optimum; adding a circulation around a directed cycle preserves these constraints and yields a continuum of distinct forward policies P_F(s'|s) = F(s → s')/F(s). Only one of these is the expected-visit-count flow of Definition 3.5 that Proposition 3.8 associates with the fixed P_B, and FM contains no term that can select it. The paper's own Appendix C.1 concedes that FM 'does not admit explicit parameterization of a backward policy, as well as training with fixed backward policies,' which contradicts the breadth of the corollary. The corollary should be restricted to losses that actually involve P_B (e.g., DB, TB, SubTB), or the claim should be reformulated to specify which losses are covered; as stated, the main practical corollary of the paper is internally inconsistent.
minor comments (5)
- [Section 3.5, Eq. (12)] In Eq. (12) the regularizer is written as λ F_θ(s), but since the network parameterizes the log-flow, the authors should state explicitly that this means λ·exp(log F_θ(s)) to avoid ambiguity about the scale of the regularization.
- [Section 3.5, Eq. (11)] The constrained optimization problem in (11) is over strictly positive backward policies; because the positivity constraint is an open condition, the infimum of the total flow may not be attained. The authors should clarify whether (11) is meant as an infimum or whether additional compactness assumptions are intended.
- [Appendix C.1] The statement that FM 'does not admit explicit parameterization of a backward policy, as well as training with fixed backward policies' should be reconciled with Corollary 3.11; at present the appendix explicitly excludes the FM loss from the setting in which the corollary is claimed to hold.
- [Table 1] For n = 20, the rows for DB ΔF and SDB ΔF report ΔlogZ ≈ 42.98 with zero standard error, indicating that these runs completely fail to estimate the normalizing constant. The authors should add a note that these configurations are included primarily for the trajectory-length comparison and are not competitive for reward matching.
- [Appendix B.2] The scaling hypothesis is supported by a heuristic gradient argument about the derivative of losses in ΔF scale. The authors should state clearly in the main text that this is an explanatory hypothesis rather than a proven statement, since the paper does not provide a theoretical guarantee for the stability of ΔF-scale losses.
Circularity Check
No significant circularity: the core theory is derived from explicit expected-visit-count definitions, and the main overreach in Corollary 3.11 is a correctness issue rather than a circular reduction.
full rationale
The paper's claimed derivation chain is self-contained. Definition 3.5 defines flows as F(sf) times expected visit counts under the reversed Markov chain induced by PB. Proposition 3.6 derives detailed balance and flow matching from this definition — F(s -> s') = F(s')PB(s | s') follows by Fubini and the Markov property — rather than assuming them. Proposition 3.8 constructs the unique forward policy PF(s' | s) = F(s')PB(s | s')/F(s) and verifies equality of trajectory probabilities, so uniqueness is a mathematical consequence of the definitions, not a fitted input. Proposition 3.10 obtains reward matching from F(x -> sf) = R(x) together with F(sf) = sum_x R(x) = Z. Theorem 3.13 generalizes Tiapkin et al. (2024), but Appendix A.7 supplies an independent proof via occupancy measures and soft Bellman equations instead of resting on the cited acyclic theorem. The main overreach is Corollary 3.11, which says that 'any loss from the acyclic GFlowNet literature' learns the PF corresponding to fixed PB, whereas Appendix C.1 concedes that the flow matching loss 'does not admit explicit parameterization of a backward policy, as well as training with fixed backward policies.' This is an internal inconsistency and overgeneralization, not a circular reduction: no equation is assumed true and then recovered as a prediction. The fixed-PB DB/TB-style losses do have global optima that recover the induced PF by Propositions 3.8–3.9, so the non-circular core of the paper stands. Self-citations to Tiapkin et al. (2024) and Morozov et al. (2024) are used as context or external baselines, and the central results are proved in the present paper, so they are not load-bearing. The score of 1 reflects a minor breadth-of-claim issue, not circularity.
Assumptions & free parameters
free parameters (2)
- λ (state flow regularization strength) =
10^-3 and 10^-5 in experiments
- SDB hyperparameters ε and η =
ε=1.0, η=10^-3
assumptions (4)
- domain assumption Assumption 3.1: G is finite, s0 has no incoming edges, sf has no outgoing edges, and every state lies on some path from s0 to sf.
- domain assumption PB(s|s') > 0 for every edge s→s' ∈ E whenever a backward policy is used.
- domain assumption Reward R(x) > 0 for all terminal states x.
- standard math Standard results for finite absorbing Markov chains (e.g., fundamental matrix (I-Q)^{-1} exists).
Cite this review
Pith. "Pith review of Revisiting Non-Acyclic GFlowNets in Discrete Environments." pith.science (2026). https://pith.science/paper/HGHOL5HH
@misc{pith2026250207735,
author = {Pith},
title = {Pith review of: Revisiting Non-Acyclic GFlowNets in Discrete Environments},
year = {2026},
howpublished = {\url{https://pith.science/paper/HGHOL5HH}},
note = {Machine review of arXiv:2502.07735}
}
read the original abstract
Generative Flow Networks (GFlowNets) are a family of generative models that learn to sample objects from a given probability distribution, potentially known up to a normalizing constant. Instead of working in the object space, GFlowNets proceed by sampling trajectories in an appropriately constructed directed acyclic graph environment, greatly relying on the acyclicity of the graph. In our paper, we revisit the theory that relaxes the acyclicity assumption and present a simpler theoretical framework for non-acyclic GFlowNets in discrete environments. Moreover, we provide various novel theoretical insights related to training with fixed backward policies, the nature of flow functions, and connections between entropy-regularized RL and non-acyclic GFlowNets, which naturally generalize the respective concepts and theoretical results from the acyclic setting. In addition, we experimentally re-examine the concept of loss stability in non-acyclic GFlowNet training, as well as validate our own theoretical findings.
Figures
Figures from the paper (3 more)
Forward citations
Cited by 2 Pith papers
-
Adaptive Destruction Processes for Diffusion Samplers
Learnable destruction processes with decoupled variances improve few-step discrete-time diffusion samplers on benchmarks and in GAN latent space.
-
Beyond the Proxy: Trajectory-Distilled Guidance for Offline GFlowNet Training
TD-GFN uses IRL-derived edge rewards to prune the environment DAG and sample backward trajectories, training offline GFlowNets directly from ground-truth terminal rewards without a proxy reward model.
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]
Flow network based generative models for non-iterative diverse candidate generation
Bengio, E., Jain, M., Korablyov, M., Precup, D., and Bengio, Y. Flow network based generative models for non-iterative diverse candidate generation. Advances in Neural Information Processing Systems, 34: 0 27381--27394, 2021
2021
-
[3]
Bengio, Y., Lahlou, S., Deleu, T., Hu, E. J., Tiwari, M., and Bengio, E. Gflownet foundations. Journal of Machine Learning Research, 24 0 (210): 0 1--55, 2023
work page 2023
-
[4]
Dynamic programming and optimal control: Volume I, volume 4
Bertsekas, D. Dynamic programming and optimal control: Volume I, volume 4. Athena scientific, 2012
work page 2012
-
[5]
A theory of non-acyclic generative flow networks
Brunswic, L., Li, Y., Xu, Y., Feng, Y., Jui, S., and Ma, L. A theory of non-acyclic generative flow networks. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 38, pp.\ 11124--11131, 2024
work page 2024
-
[6]
Advanced Combinatorics: The Art of Finite and Infinite Expansions
Comtet, L. Advanced Combinatorics: The Art of Finite and Infinite Expansions. Reidel, 1974
work page 1974
-
[7]
SynFlowNet : Design of diverse and novel molecules with synthesis constraints
Cretu, M., Harris, C., Igashov, I., Schneuing, A., Segler, M., Correia, B., Roy, J., Bengio, E., and Lio, P. SynFlowNet : Design of diverse and novel molecules with synthesis constraints. In The Thirteenth International Conference on Learning Representations, 2025
work page 2025
-
[8]
Generative flow networks: Theory and applications to structure learning
Deleu, T. Generative flow networks: Theory and applications to structure learning. arXiv preprint arXiv:2501.05498, 2025
arXiv 2025
Show all 43 references
-
[9]
Bayesian structure learning with generative flow networks
Deleu, T., G \'o is, A., Emezue, C., Rankawat, M., Lacoste-Julien, S., Bauer, S., and Bengio, Y. Bayesian structure learning with generative flow networks. In Uncertainty in Artificial Intelligence, pp.\ 518--528. PMLR, 2022
2022
-
[10]
Discrete probabilistic inference as control in multi-path environments
Deleu, T., Nouri, P., Malkin, N., Precup, D., and Bengio, Y. Discrete probabilistic inference as control in multi-path environments. In The 40th Conference on Uncertainty in Artificial Intelligence, 2024
2024
-
[11]
Markov chains
Douc, R., Moulines, E., Priouret, P., and Soulier, P. Markov chains. Springer Series in Operations Research and Financial Engineering. Springer, 2018. ISBN 978-3-319-97703-4
2018
-
[12]
A theory of regularized markov decision processes
Geist, M., Scherrer, B., and Pietquin, O. A theory of regularized markov decision processes. In International Conference on Machine Learning, pp.\ 2160--2169. PMLR, 2019
2019
-
[13]
Optimizing backward policies in GF lownets via trajectory likelihood maximization
Gritsaev, T., Morozov, N., Samsonov, S., and Tiapkin, D. Optimizing backward policies in GF lownets via trajectory likelihood maximization. In The Thirteenth International Conference on Learning Representations, 2025
2025
-
[14]
Random policy evaluation uncovers policies of generative flow networks
He, H., Bengio, E., Cai, Q., and Pan, L. Random policy evaluation uncovers policies of generative flow networks. arXiv preprint arXiv:2406.02213, 2024
2024 arXiv
-
[15]
J., Jain, M., Elmoznino, E., Kaddar, Y., Lajoie, G., Bengio, Y., and Malkin, N
Hu, E. J., Jain, M., Elmoznino, E., Kaddar, Y., Lajoie, G., Bengio, Y., and Malkin, N. Amortizing intractable inference in large language models. In The Twelfth International Conference on Learning Representations, 2023
2023
-
[16]
Beyond squared error: Exploring loss design for enhanced training of generative flow networks
Hu, R., Zhang, Y., Li, Z., and Huang, L. Beyond squared error: Exploring loss design for enhanced training of generative flow networks. In The Thirteenth International Conference on Learning Representations, 2025
2025
-
[17]
F., Ekbote, C
Jain, M., Bengio, E., Hernandez-Garcia, A., Rector-Brooks, J., Dossou, B. F., Ekbote, C. A., Fu, J., Zhang, T., Kilgour, M., Zhang, D., et al. Biological sequence design with gflownets. In International Conference on Machine Learning, pp.\ 9786--9801. PMLR, 2022
2022
-
[18]
Pessimistic backward policy for GF low N ets
Jang, H., Jang, Y., Kim, M., Park, J., and Ahn, S. Pessimistic backward policy for GF low N ets. In Advances in Neural Information Processing Systems, volume 37, pp.\ 107087--107111, 2024 a
2024
-
[19]
Learning energy decompositions for partial inference in GF lownets
Jang, H., Kim, M., and Ahn, S. Learning energy decompositions for partial inference in GF lownets. In The Twelfth International Conference on Learning Representations, 2024 b
2024
-
[20]
Kemeny, J. G. and Snell, J. L. Finite markov chains, volume 26. van Nostrand Princeton, NJ, 1969
1969
-
[21]
Improved off-policy reinforcement learning in biological sequence design
Kim, H., Kim, M., Yun, T., Choi, S., Bengio, E., Hern \'a ndez-Garc \' a, A., and Park, J. Improved off-policy reinforcement learning in biological sequence design. arXiv preprint arXiv:2410.04461, 2024
2024 arXiv
-
[22]
Ant colony sampling with GFlowNets for combinatorial optimization
Kim, M., Choi, S., Kim, H., Son, J., Park, J., and Bengio, Y. Ant colony sampling with GFlowNets for combinatorial optimization. In International Conference on Artificial Intelligence and Statistics. PMLR, 2025
2025
-
[23]
Hpc resources of the higher school of economics
Kostenetskiy, P., Chulkevich, R., and Kozyrev, V. Hpc resources of the higher school of economics. In Journal of Physics: Conference Series, volume 1740, pp.\ 012050. IOP Publishing, 2021
2021
-
[24]
Rgfn: Synthesizable molecular generation using gflownets
Koziarski, M., Rekesh, A., Shevchuk, D., van der Sloot, A., Gai \'n ski, P., Bengio, Y., Liu, C., Tyers, M., and Batey, R. Rgfn: Synthesizable molecular generation using gflownets. Advances in Neural Information Processing Systems, 37: 0 46908--46955, 2024
2024
-
[25]
N., Bengio, Y., and Malkin, N
Lahlou, S., Deleu, T., Lemos, P., Zhang, D., Volokhova, A., Hern\' a ndez-Garc a, A., Ezzine, L. N., Bengio, Y., and Malkin, N. A theory of continuous generative flow networks. In International Conference on Machine Learning, pp.\ 18269--18300. PMLR, 2023
2023
-
[26]
Qgfn: Controllable greediness with action values
Lau, E., Lu, S., Pan, L., Precup, D., and Bengio, E. Qgfn: Controllable greediness with action values. Advances in neural information processing systems, 37: 0 81645--81676, 2024
2024
-
[27]
J., Kawaguchi, K., Gidel, G., Bengio, Y., Malkin, N., and Jain, M
Lee, S., Kim, M., Cherif, L., Dobre, D., Lee, J., Hwang, S. J., Kawaguchi, K., Gidel, G., Bengio, Y., Malkin, N., and Jain, M. Learning diverse attacks on large language models for robust red-teaming and safety tuning. In The Thirteenth International Conference on Learning Rep...
2025
-
[28]
C., Bosc, T., Bengio, Y., and Malkin, N
Madan, K., Rector-Brooks, J., Korablyov, M., Bengio, E., Jain, M., Nica, A. C., Bosc, T., Bengio, Y., and Malkin, N. Learning gflownets from partial episodes for improved convergence and stability. In International Conference on Machine Learning, pp.\ 23467--23483. PMLR, 2023
2023
-
[29]
Trajectory balance: Improved credit assignment in gflownets
Malkin, N., Jain, M., Bengio, E., Sun, C., and Bengio, Y. Trajectory balance: Improved credit assignment in gflownets. Advances in Neural Information Processing Systems, 35: 0 5955--5967, 2022
2022
-
[30]
J., Everett, K
Malkin, N., Lahlou, S., Deleu, T., Ji, X., Hu, E. J., Everett, K. E., Zhang, D., and Bengio, Y. GF lownets and variational inference. In The Eleventh International Conference on Learning Representations, 2023
2023
-
[31]
Maximum entropy gflownets with soft q-learning
Mohammadpour, S., Bengio, E., Frejinger, E., and Bacon, P.-L. Maximum entropy gflownets with soft q-learning. In International Conference on Artificial Intelligence and Statistics, pp.\ 2593--2601. PMLR, 2024
2024
-
[32]
Improving gflownets with monte carlo tree search
Morozov, N., Tiapkin, D., Samsonov, S., Naumov, A., and Vetrov, D. Improving gflownets with monte carlo tree search. arXiv preprint arXiv:2406.13655, 2024
2024 arXiv
-
[33]
A unified view of entropy-regularized markov decision processes
Neu, G., Jonsson, A., and G \'o mez, V. A unified view of entropy-regularized markov decision processes. arXiv preprint arXiv:1705.07798, 2017
2017 arXiv
-
[34]
Better training of gflownets with local credit and incomplete trajectories
Pan, L., Malkin, N., Zhang, D., and Bengio, Y. Better training of gflownets with local credit and incomplete trajectories. In International Conference on Machine Learning, pp.\ 26878--26890. PMLR, 2023
2023
-
[35]
W., Bengio, E., Hajiramezanali, E., Loukas, A., Cho, K., and Biancalani, T
Shen, M. W., Bengio, E., Hajiramezanali, E., Loukas, A., Cho, K., and Biancalani, T. Towards understanding and improving gflownet training. In Proceedings of the 40th International Conference on Machine Learning, ICML'23. JMLR.org, 2023
2023
-
[36]
R., Cherkasov, A., Kim, W
Shen, T., Seo, S., Lee, G., Pandey, M., Smith, J. R., Cherkasov, A., Kim, W. Y., and Ester, M. Taco GFN : Target-conditioned GFlowNet for structure-based drug design. Transactions on Machine Learning Research, 2024. ISSN 2835-8856
2024
-
[37]
On divergence measures for training gflownets
Silva, T., de Souza da Silva, E., and Mesquita, D. On divergence measures for training gflownets. Advances in Neural Information Processing Systems, 37: 0 75883--75913, 2024
2024
-
[38]
Tiapkin, D., Morozov, N., Naumov, A., and Vetrov, D. P. Generative flow networks as entropy-regularized rl. In International Conference on Artificial Intelligence and Statistics, pp.\ 4213--4221. PMLR, 2024
2024
-
[39]
Understanding reinforcement learning-based fine-tuning of diffusion models: A tutorial and review
Uehara, M., Zhao, Y., Biancalani, T., and Levine, S. Understanding reinforcement learning-based fine-tuning of diffusion models: A tutorial and review. arXiv preprint arXiv:2407.13734, 2024
2024 arXiv
-
[40]
Amortizing intractable inference in diffusion models for vision, language, and control
Venkatraman, S., Jain, M., Scimeca, L., Kim, M., Sendera, M., Hasan, M., Rowe, L., Mittal, S., Lemos, P., Bengio, E., Adam, A., Rector-Brooks, J., Bengio, Y., Berseth, G., and Malkin, N. Amortizing intractable inference in diffusion models for vision, language, and control. Ne...
2024
-
[41]
C., Bengio, Y., and Pan, L
Zhang, D., Dai, H., Malkin, N., Courville, A. C., Bengio, Y., and Pan, L. Let the flows tell: Solving graph combinatorial problems with gflownets. In Advances in Neural Information Processing Systems, volume 36, pp.\ 11952--11969, 2023 a
2023
-
[42]
M., Jaitly, N., and Zhai, S
Zhang, D., Zhang, Y., Gu, J., Zhang, R., Susskind, J. M., Jaitly, N., and Zhai, S. Improving gflownets for text-to-image diffusion alignment. Transactions on Machine Learning Research, 2025. ISSN 2835-8856
2025
-
[43]
W., Rainone, C., Peschl, M., and Bondesan, R
Zhang, D. W., Rainone, C., Peschl, M., and Bondesan, R. Robust scheduling with gflownets. In The Eleventh International Conference on Learning Representations, 2023 b
2023
Reviewed August 8, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.