Pith. sign in

REVIEW 4 major objections 5 minor 28 references

Bounded Exploration with World Model Uncertainty in Soft Actor-Critic Reinforcement Learning Algorithm

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

Pith's one-line read A bounded-exploration mechanism for Soft Actor-Critic that picks actions by world-model ensemble uncertainty improves rewards and sample efficiency in most tested continuous-control benchmarks without modifying the reward function.

desk verdict A genuinely novel selection mechanism undermined by an unspecified post-processing step and statistically weak results. read the letter →

arxiv 2412.06139 v1 pith:3YZ3RDI5 submitted 2024-12-09 cs.LG cs.SYeess.SY

classification cs.LGcs.SYeess.SY
keywords boundedexplorationSoftActor-Criticintrinsicmotivationworldmodeluncertaintyensemblemodel-basedreinforcementlearningcontinuouscontrolexploration-exploitationtrade-off
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 proposes bounded exploration, a way to add intrinsic-motivation exploration to Soft Actor-Critic (SAC) without touching the reward function. For each state, the agent samples many candidate actions from SAC's stochastic policy, asks an ensemble of world models how much their next-state predictions disagree for each candidate, and uses a Gibbs distribution over that disagreement to choose which action to execute. The authors report that this selection rule improves average return and data efficiency in 6 of 8 MuJoCo experiments, including faster convergence for a model-based SAC extension, and they argue this is a safer alternative to adding uncertainty bonuses to a reward that has a strict numerical meaning. The paper concedes the gains are not universal: in environments that require narrow learned motion sequences such as Hopper and Walker2d, bounded exploration performed worse or indistinguishably.

What carries the argument

The carrying object is the rank-preserving Gibbs distribution over world-model uncertainty, $p(a_i^t)=\frac{\exp(u_i)}{\sum_{n=1}^{N}\exp(u_n)}$, where $u_n$ is the summed per-dimension variance of an ensemble's predicted next states for candidate action $a_n^t$. This distribution converts uncertainty ranks into probabilities, letting uncertainty choose among actions that SAC's stochastic policy already regards as plausible, and it is what distinguishes bounded exploration from methods that add uncertainty to the reward or to the Q-value. The ensemble, trained on normalized state differences, supplies the uncertainty signal; a normalization and a closest-to-the-mean pull were added during training to make the signal usable, but their exact form is not disclosed.

What would settle it

Run the bounded-exploration pipeline on a task where it helped, such as Swimmer-v4, with the uncertainty values shuffled or replaced by fixed random noise while keeping all other hyperparameters identical; if the agent's reward stays at the bounded-exploration level, the mechanism does not depend on world-model disagreement. A second check is to set the normalization to identity and S to one, removing the closest-to-the-mean pull, and see whether the performance gap persists.

Watch

Extended reading notes

Core claim

The central claim is that exploration can be bounded by the soft policy's own distribution while still being driven by world-model uncertainty. SAC proposes a distribution of actions; the agent samples N candidates, feeds each candidate through an ensemble of five world models trained to predict normalized state differences, and computes the uncertainty of each candidate as the summed per-dimension variance of the next-state predictions, $u_n = \sum_{d=1}^D \sigma_d^2$. A rank-preserving Gibbs distribution then turns these uncertainty values into selection probabilities, so high-uncertainty actions are more likely to be executed while actions far outside SAC's recommendation are suppressed. During training the authors noticed that raw uncertainty differences were not apparent, so they added a normalization before the Gibbs step and, after sampling the resulting distribution S times, output the action closest to the SAC policy mean; the exact normalization and S value are not reported. On its own terms, the paper establishes that this bounded selector improves averaged reward and convergence speed in several continuous-control tasks and that it does so while leaving the reward function's meaning intact.

Load-bearing premise

The load-bearing premise is that the spread among an ensemble's predicted next states is a meaningful guide to which action to try; if that spread does not separate good from bad actions, the reported gains would come from the selection tricks rather than from world-model uncertainty.

Editorial extensions

If this is right

  • On tasks such as HalfCheetah, Swimmer, Ant, and Walker2d, adding bounded exploration improves average episodic reward or reduces the number of transitions needed to reach it, relative to vanilla SAC.
  • Because the reward function is unchanged, the method gives practitioners a way to pursue intrinsic exploration in settings where the reward has a strict meaning and must not be distorted by bonuses.
  • Equipping a model-based extension of SAC with bounded exploration can speed convergence in at least one tested environment (Ant-v4), even when final rewards are similar.
  • The method does not generalize uniformly: in Hopper-v4 and Walker2d-v4 the bounded-exploration agent's performance was lower or indistinguishable, suggesting that tasks whose rewards require a narrow learned sequence of motions may not benefit.
  • The comparison against an action-selection method that adds uncertainty to the Q-value shows the bounded-exploration design can produce competitive or better scores without preferring on-policy actions.

Reading between the lines

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

  • An implication the paper leaves untested is that the uncertainty signal itself, not the bounded resampling mechanics, causes the improvement; a clean way to check this is to replace the uncertainty values with random noise in the Gibbs selector while keeping all other details fixed.
  • The same selector design could be attached to any stochastic policy, not only SAC, provided a world-model ensemble is available, which would let the bounded-exploration principle transfer to other continuous-control algorithms.
  • The equal weighting of state dimensions in the variance sum is a hidden design choice; a learned or task-dependent weighting of prediction discrepancies could make the selector more discriminating in high-dimensional or partially observable environments.
  • Because the normalization and the S sampling parameter are not reported, reproducing the method requires filling those gaps; fixing S to a single sample and removing the normalization would reveal how much of the gain depends on the pull toward the SAC mean.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

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

Referee Report

4 major / 5 minor

Summary. The paper proposes 'bounded exploration,' a method for Soft Actor-Critic that samples N candidate actions from the SAC policy, estimates the epistemic uncertainty of each candidate using the summed per-dimension variance of an ensemble of world models' next-state predictions (Eq. 2), and then selects an action from a Gibbs-style distribution over those uncertainties (Eq. 3) without modifying the reward function. The authors evaluate this mechanism on MuJoCo environments in both model-free (SAC) and model-based (MVE) settings, comparing against vanilla SAC and a Q-value-plus-uncertainty baseline, and report that bounded exploration achieved the highest score in 6 of 8 experiments. The paper concludes that combining soft exploration with world-model uncertainty improves data efficiency and convergence speed.

Significance. If the central claim were well supported, the idea would be valuable: it offers a way to inject intrinsic-motivation exploration without altering a reward function that may have a strict semantic meaning, and it explicitly addresses the risk of novelty-bonus exploitation. The paper also provides a useful comparison against a Q-value-and-uncertainty baseline and evaluates across multiple continuous-control environments. However, the current evidence does not support the strength of the claim. The method description is incomplete in a load-bearing way (Section 4.3), the statistical support in Table 1 is weak, and the design decisions appear to have been made after observing results on the same benchmark environments. No code, data, or per-seed curves are provided. As a result, the contribution as presented is not reproducible and the mechanism is not isolated from post hoc design choices.

major comments (4)
  1. [Section 4.3, Eq. (3)] The actual decision rule executed by the agent is not the Gibbs distribution of Eq. (3) alone. The text states that a 'normalization' was applied before computing probabilities, that the resulting distribution was sampled S times, and that 'the action closest to the mean of the SAC policy's distribution was outputted.' The normalization formula and the value of S are never specified. This is a load-bearing omission: if the normalized uncertainties are nearly uniform, the closest-to-the-mean post-processing dominates and the reported gains cannot be attributed to world-model uncertainty. The authors must specify the exact algorithm and provide ablations that separately remove (i) the uncertainty signal, (ii) the normalization, and (iii) the closest-to-the-mean rule.
  2. [Section 5, Table 1] The central claim that bounded exploration 'notably improved' performance is not statistically supported. Only about three seeds were used, and most comparisons show overlapping standard deviations; for example, SAC+BE vs. SAC in HalfCheetah is 9747.7 ± 2444.5 vs. 9200.0 ± 2258.5, in Ant it is -102.1 ± 156.2 vs. -151.5 ± 251.8, and in Walker2d it is 269.3 ± 204.0 vs. 172.8 ± 157.4. Moreover, bounded exploration is worse than the baseline in Hopper (475.2 ± 104.4 vs. 776.1 ± 242.8) and in model-based Walker2d (1136.4 ± 1042.9 vs. 1386.7 ± 1501.2). The paper should report more seeds, confidence intervals or significance tests, and per-seed learning curves before claiming a 6-of-8 improvement.
  3. [Section 4.3 and Section 5] The normalization and closest-to-the-mean selection rule were introduced after the authors noticed that raw uncertainty differences were 'not apparent' during training, and the update frequency G = 10 was set by 'experimental trial-and-error.' Because these design choices were made after observing results on the same environments that are later used for the headline comparisons, the reported gains are vulnerable to selection bias. The authors should either pre-specify these choices or evaluate the method on a separate set of environments not used for design decisions.
  4. [Section 4.2, Eq. (2)] The proposed uncertainty signal is not validated. The paper assumes that the summed per-dimension variance of predicted next-state differences reliably distinguishes informative actions, but Section 4.3 admits that the differences were not apparent before normalization. There is no diagnostic showing that Eq. (2) actually separates high- and low-uncertainty actions at representative states, and no comparison to alternative uncertainty measures. Without such evidence, the mechanism driving the reported results remains unclear.
minor comments (5)
  1. [Figure 3 and Section 4.1] Figure 3 states N = 100 candidate actions, while Section 4.1 uses N = 4 in its example; the paper should state the value of N used in the experiments and keep the notation consistent.
  2. [Section 4.3, Eq. (3)] Equation (3) uses exp(u_n) with unnormalized uncertainties, but the text says a normalization was applied 'before computing the probability.' Please clarify whether u_n in Eq. (3) is the raw uncertainty or a normalized value, and define what 'rank-preserving Gibbs distribution' means in this context.
  3. [Section 5] The statement that Hopper-v4 rewards were averaged with a sliding window to 'show a clear trend' is a post hoc smoothing choice. The authors should clarify whether this was pre-specified, and should show unsmoothed per-seed curves as well.
  4. [Section 5] The seed protocol is described only as 'All random seeds (Numpy and Pytorch) were constantly changed at every reset.' This is ambiguous; the paper should specify how many seeds were used per environment, how seeds were assigned, and whether the same seeds were used across methods.
  5. [References and Introduction] There are numerous formatting issues, including inconsistent citation styles, repeated citation text, and a stray math expression 'fθ(xt+1, rt|st, at)' at the very beginning of the Introduction. These should be cleaned up.

Circularity Check

1 steps flagged · score 6.0 of 10

Section 4.3's post-hoc normalization and closest-to-mean rule, added after uncertainty differences were 'not apparent,' replace the Eq. (3) mechanism; Table 1's gains are in-sample evaluations of an unspecified tuned rule, so the central '6/8' claim partially reduces to a fit.

  1. fitted input called prediction [Section 4.3, Eq. (3) and the paragraph immediately following it]
    "During training, it was noticed that the difference in uncertainty between different actions is not apparent. The reason could be that the action dimension is significantly smaller than the state dimension. A normalization was applied before computing the probability. The result distribution was sampled S times. The action closest to the mean of the SAC policy's distribution was outputted."

    The paper presents Eq. (3) as the bounded-exploration decision rule, but the agent actually evaluated uses an unspecified normalization, an unspecified sampling count S, and a closest-to-the-mean selector that were introduced after observing that 'the difference in uncertainty between different actions is not apparent.' If the raw uncertainties are nearly equal, then exp(u_n) in Eq. (3) is nearly constant and the Gibbs probabilities are near-uniform; the extra closest-to-mean step, not the world-model uncertainty of Eq. (2), then determines the executed action.

full rationale

The paper contains no self-citations used as load-bearing evidence and no imported uniqueness theorem; its derivation is empirical rather than formal. However, the central claim that bounded exploration improves SAC and its model-based extension is not a clean test of the stated Eq. (2)-to-Eq. (3) mechanism. Section 4.3 explicitly states that uncertainty differences were not apparent during training, then adds a normalization and a closest-to-the-mean action selector, neither of which is fully specified or ablated. Since the abstract and Figure 3 describe the method as selecting the action causing the highest world-model uncertainty, the implemented algorithm diverges from the described one, and the reported improvements cannot be uniquely attributed to the uncertainty signal. Additionally, Section 5 says 'All hyper-parameters were fixed to eliminate ambiguity' but also states 'Based on experimental trial-and-error, we updated every model inside an agent G = 10 times per environment step,' and the Section 4.3 modifications were likewise made after observing training behavior. Thus the headline '6 out of 8' result is an in-sample fit of a partially unspecified heuristic, warranting a partial-circularity score of 6 rather than a clean bill.

Assumptions & free parameters 5 free parameters · 3 assumptions · 0 invented entities

The ledger shows a heuristic method with several manually chosen hyper-parameters and domain assumptions about uncertainty and reward integrity. No new physical or mathematical entities are introduced.

free parameters (5)
  • Number of candidate actions N = 100
    Chosen by the authors for the experiments; not grounded in theory or prior work.
  • Number of world models M = 5
    Ensemble size chosen for the experiments; no analysis of sensitivity.
  • Model-based rollout horizon H = 2
    Taken from Janner et al. (2019) suggestion, but applied here with no validation in this context.
  • Updates per environment step G = 10
    Set by experimental trial-and-error, as stated in Section 5.
  • Sampling parameter S = not reported
    The method's behavior depends on S, but the paper never states its value, making the method incompletely specified.
assumptions (3)
  • domain assumption Ensemble world-model variance is a valid intrinsic motivation signal for exploration.
    The paper relies on prior work (Depeweg et al., Chua et al.) for this, but does not validate it for the action-selection use case.
  • domain assumption All state dimensions are equally important when summing variance.
    Explicitly admitted as a limitation in Section 6.
  • domain assumption The reward function has strict meaning and should not be modified.
    This motivates the design, but is not a mathematical axiom; it is the problem setting assumption.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Bounded Exploration with World Model Uncertainty in Soft Actor-Critic Reinforcement Learning Algorithm." pith.science (2026). https://pith.science/paper/3YZ3RDI5

@misc{pith2026241206139,
  author       = {Pith},
  title        = {Pith review of: Bounded Exploration with World Model Uncertainty in Soft Actor-Critic Reinforcement Learning Algorithm},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/3YZ3RDI5}},
  note         = {Machine review of arXiv:2412.06139}
}
read the original abstract

One of the bottlenecks preventing Deep Reinforcement Learning algorithms (DRL) from real-world applications is how to explore the environment and collect informative transitions efficiently. The present paper describes bounded exploration, a novel exploration method that integrates both 'soft' and intrinsic motivation exploration. Bounded exploration notably improved the Soft Actor-Critic algorithm's performance and its model-based extension's converging speed. It achieved the highest score in 6 out of 8 experiments. Bounded exploration presents an alternative method to introduce intrinsic motivations to exploration when the original reward function has strict meanings.

Figures

Figures reproduced from arXiv: 2412.06139 by the authors.

Figure 1
Figure 1. An oracle agent can follow the optimal path [PITH_FULL_IMAGE:figures/full_fig_p002_1.png] view at source ↗
Figure 3
Figure 3. For each current state do: Step 1 (SAC Policy): the soft policy parameterize Normal distributions that [PITH_FULL_IMAGE:figures/full_fig_p003_3.png] view at source ↗
Figure 4
Figure 4. Sample Actions from a Multi-variant Stochas [PITH_FULL_IMAGE:figures/full_fig_p004_4.png] view at source ↗
Figures from the paper (3 more)
Figure 5
Figure 5. Figure 5: Mujoco Environments. vanilla SAC baseline [Hill et al., 2018]. We also evalu￾ated bounded exploration in a model-based setting us￾ing MVE. Averaged episodic reward was used to quantify agents’ performance. All hyper-parameters were fixed to eliminate ambiguity. The dev…
Figure 6
Figure 6. Figure 6: Averaged rewards received by model-free SAC with/without bounded exploration. [PITH_FULL_IMAGE:figures/full_fig_p006_6.png]
Figure 7
Figure 7. Figure 7: Averaged rewards received by model-based (Horizon=2) extension of SAC with/without bounded explo [PITH_FULL_IMAGE:figures/full_fig_p007_7.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

28 extracted references · 21 canonical work pages

  1. [1]

    , 2019] Arthur Aubret, Laetitia Matignon, and Salima Hassas

    [Aubret et al. , 2019] Arthur Aubret, Laetitia Matignon, and Salima Hassas. A survey on intrinsic moti- (a) MBRL Walker2d-v4 (b) MBRL Ant-v4 (c) MBRL HalfCheetah-v4 Figure 7: Averaged rewards received by model-based (Horizon=2) extension of SAC with/without bounded explo- ration. vation in reinforcement learning. arXiv preprint arXiv:1908.06976,

  2. [7]

    , 2016] Stefan Depeweg, Jos´ e Miguel Hern´ andez-Lobato, Finale Doshi-Velez, and Steffen Udluft

    [Depeweg et al. , 2016] Stefan Depeweg, Jos´ e Miguel Hern´ andez-Lobato, Finale Doshi-Velez, and Steffen Udluft. Learning and policy search in stochastic dy- namical systems with bayesian neural networks. arXiv preprint arXiv:1605.07127,

  3. [9]

    , 2017] Prafulla Dhariwal, Christopher Hesse, Oleg Klimov, Alex Nichol, Matthias Plappert, Alec Radford, John Schulman, Szymon Sidor, Yuhuai Wu, and Peter Zhokhov

    [Dhariwal et al. , 2017] Prafulla Dhariwal, Christopher Hesse, Oleg Klimov, Alex Nichol, Matthias Plappert, Alec Radford, John Schulman, Szymon Sidor, Yuhuai Wu, and Peter Zhokhov. Openai baselines,

  4. [11]

    A comprehensive survey on safe reinforcement learning

    [Garcıa and Fern´ andez, 2015] Javier Garcıa and Fer- nando Fern´ andez. A comprehensive survey on safe reinforcement learning. Journal of Machine Learning Research, 16(1):1437–1480,

  5. [13]

    [Hill et al. , 2018] Ashley Hill, Antonin Raffin, Maximil- ian Ernestus, Adam Gleave, Anssi Kanervisto, Rene Traore, Prafulla Dhariwal, Christopher Hesse, Oleg Klimov, Alex Nichol, Matthias Plappert, Alec Rad- ford, John Schulman, Szymon Sidor, and Yuhuai Wu. Stable baselines,

  6. [14]

    , 2016] Rein Houthooft, Xi Chen, Yan Duan, John Schulman, Filip De Turck, and Pieter Abbeel

    [Houthooft et al. , 2016] Rein Houthooft, Xi Chen, Yan Duan, John Schulman, Filip De Turck, and Pieter Abbeel. Vime: Variational information maximizing exploration. Advances in neural information process- ing systems , 29,

  7. [15]

    , 2019] Michael Janner, Justin Fu, Marvin Zhang, and Sergey Levine

    [Janner et al. , 2019] Michael Janner, Justin Fu, Marvin Zhang, and Sergey Levine. When to trust your model: Model-based policy optimization. Advances in neural information processing systems, 32,

  8. [16]

    What uncertainties do we need in bayesian deep learn- ing for computer vision? Advances in neural informa- tion processing systems, 30,

    [Kendall and Gal, 2017 ] Alex Kendall and Yarin Gal. What uncertainties do we need in bayesian deep learn- ing for computer vision? Advances in neural informa- tion processing systems, 30,

Show all 28 references
  1. [17]

    , 2013] Jens Kober, J Andrew Bagnell, and Jan Peters

    [Kober et al. , 2013] Jens Kober, J Andrew Bagnell, and Jan Peters. Reinforcement learning in robotics: A sur- vey. The International Journal of Robotics Research , 32(11):1238–1274,

  2. [18]

    , 2018] Thanard Kurutach, Ignasi Clav- era, Yan Duan, Aviv Tamar, and Pieter Abbeel

    [Kurutach et al. , 2018] Thanard Kurutach, Ignasi Clav- era, Yan Duan, Aviv Tamar, and Pieter Abbeel. Model-ensemble trust-region policy optimization. arXiv preprint arXiv:1802.10592 ,

  3. [19]

    , 2022] Pawel Ladosz, Lilian Weng, Min- woo Kim, and Hyondong Oh

    [Ladosz et al. , 2022] Pawel Ladosz, Lilian Weng, Min- woo Kim, and Hyondong Oh. Exploration in deep re- inforcement learning: A survey. Information Fusion, 85:1–22,

  4. [20]

    Intrinsic motivation in model-based reinforcement learning: A brief review

    [Latyshev and Panov, 2023] Artem Latyshev and Alek- sandr I Panov. Intrinsic motivation in model-based reinforcement learning: A brief review. arXiv preprint arXiv:2301.10067,

  5. [23]

    , 2018] Yuping Luo, Huazhe Xu, Yuanzhi Li, Yuandong Tian, Trevor Darrell, and Tengyu Ma

    [Luo et al. , 2018] Yuping Luo, Huazhe Xu, Yuanzhi Li, Yuandong Tian, Trevor Darrell, and Tengyu Ma. Al- gorithmic framework for model-based deep reinforce- ment learning with theoretical guarantees. arXiv preprint arXiv:1807.03858,

  6. [24]

    , 2018] Anusha Nagabandi, Gregory Kahn, Ronald S Fearing, and Sergey Levine

    [Nagabandi et al. , 2018] Anusha Nagabandi, Gregory Kahn, Ronald S Fearing, and Sergey Levine. Neural network dynamics for model-based deep reinforcement learning with model-free fine-tuning. In 2018 IEEE international conference on robotics and automation (ICRA), pages 7559–7...

  7. [25]

    , 2017] Deepak Pathak, Pulkit Agrawal, Alexei A Efros, and Trevor Darrell

    [Pathak et al. , 2017] Deepak Pathak, Pulkit Agrawal, Alexei A Efros, and Trevor Darrell. Curiosity-driven exploration by self-supervised prediction. In Interna- tional conference on machine learning , pages 2778–

  8. [26]

    , 2019] Deepak Pathak, Dhiraj Gandhi, and Abhinav Gupta

    [Pathak et al. , 2019] Deepak Pathak, Dhiraj Gandhi, and Abhinav Gupta. Self-supervised exploration via disagreement. In International conference on machine learning, pages 5062–5071. PMLR,

  9. [27]

    , 2021] Yao Yao, Li Xiao, Zhicheng An, Wan- peng Zhang, and Dijun Luo

    [Yao et al. , 2021] Yao Yao, Li Xiao, Zhicheng An, Wan- peng Zhang, and Dijun Luo. Sample efficient re- inforcement learning via model-ensemble exploration and exploitation. In 2021 IEEE International Con- ference on Robotics and Automation (ICRA) , pages 4202–4208. IEEE,

  10. [28]

    Modeling purpose- ful adaptive behavior with the principle of maximum causal entropy

    [Ziebart, 2010] Brian D Ziebart. Modeling purpose- ful adaptive behavior with the principle of maximum causal entropy. Carnegie Mellon University, 2010

  11. [2002]

    Intrinsic motivation and reinforcement learning

    [Barto, 2013] Andrew G Barto. Intrinsic motivation and reinforcement learning. Intrinsically motivated learn- ing in natural and artificial systems , pages 17–47,

  12. [2013]

    , 2022] Lukas Brunke, Melissa Greeff, Adam W Hall, Zhaocong Yuan, Siqi Zhou, Jacopo Panerati, and Angela P Schoellig

    [Brunke et al. , 2022] Lukas Brunke, Melissa Greeff, Adam W Hall, Zhaocong Yuan, Siqi Zhou, Jacopo Panerati, and Angela P Schoellig. Safe learning in robotics: From learning-based control to safe re- inforcement learning. Annual Review of Control, Robotics, and Autonomous Syst...

  13. [2015]

    , 2018] Tuomas Haarnoja, Aurick Zhou, Kristian Hartikainen, George Tucker, Sehoon Ha, Jie Tan, Vikash Kumar, Henry Zhu, Abhishek Gupta, Pieter Abbeel, et al

    [Haarnoja et al. , 2018] Tuomas Haarnoja, Aurick Zhou, Kristian Hartikainen, George Tucker, Sehoon Ha, Jie Tan, Vikash Kumar, Henry Zhu, Abhishek Gupta, Pieter Abbeel, et al. Soft actor-critic algorithms and applications. arXiv preprint arXiv:1812.05905 ,

  14. [2016]

    , 2018] Stefan Depeweg, Jose-Miguel Hernandez-Lobato, Finale Doshi-Velez, and Steffen Udluft

    [Depeweg et al. , 2018] Stefan Depeweg, Jose-Miguel Hernandez-Lobato, Finale Doshi-Velez, and Steffen Udluft. Decomposition of uncertainty in bayesian deep learning for efficient and risk-sensitive learning. In In- ternational Conference on Machine Learning , pages 1184–1193. PMLR,

  15. [2017]

    , 2018] Vladimir Feinberg, Alvin Wan, Ion Stoica, Michael I Jordan, Joseph E Gonzalez, and Sergey Levine

    [Feinberg et al. , 2018] Vladimir Feinberg, Alvin Wan, Ion Stoica, Michael I Jordan, Joseph E Gonzalez, and Sergey Levine. Model-based value estimation for efficient model-free reinforcement learning. arXiv preprint arXiv:1803.00101,

  16. [2018]

    , 2018] Kurtland Chua, Roberto Calandra, Rowan McAllister, and Sergey Levine

    [Chua et al. , 2018] Kurtland Chua, Roberto Calandra, Rowan McAllister, and Sergey Levine. Deep reinforce- ment learning in a handful of trials using probabilis- tic dynamics models. Advances in neural information processing systems, 31,

  17. [2019]

    , 2002] Peter Auer, Nicolo Cesa-Bianchi, and Paul Fischer

    [Auer et al. , 2002] Peter Auer, Nicolo Cesa-Bianchi, and Paul Fischer. Finite-time analysis of the multiarmed bandit problem. Machine learning, 47:235–256,

  18. [2021]

    Reinforcement learning and control as probabilistic inference: Tutorial and review

    [Levine, 2018] Sergey Levine. Reinforcement learning and control as probabilistic inference: Tutorial and review. arXiv preprint arXiv:1805.00909 ,

  19. [2022]

    , 2018] Jacob Buckman, Danijar Hafner, George Tucker, Eugene Brevdo, and Honglak Lee

    [Buckman et al. , 2018] Jacob Buckman, Danijar Hafner, George Tucker, Eugene Brevdo, and Honglak Lee. Sample-efficient reinforcement learning with stochastic ensemble value expansion. Advances in neural information processing systems , 31,

  20. [2023]

    , 2021] Kimin Lee, Michael Laskin, Aravind Srinivas, and Pieter Abbeel

    [Lee et al. , 2021] Kimin Lee, Michael Laskin, Aravind Srinivas, and Pieter Abbeel. Sunrise: A simple uni- fied framework for ensemble learning in deep reinforce- ment learning. In International Conference on Ma- chine Learning, pages 6131–6141. PMLR,

Pith tools

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