Pith. sign in

REVIEW 3 major objections 5 minor 39 references

Generalising Battery Control in Net-Zero Buildings via Personalised Federated RL

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

Pith's one-line read Federated TRPO without tuning is claimed to match tuned PPO for net-zero battery control.

desk verdict The headline claim contradicts the paper's own tables; the useful toy benchmark and honest experiments still merit a serious referee. read the letter →

arxiv 2412.20946 v2 pith:DDMGWCZS submitted 2024-12-30 cs.LG

classification cs.LG
keywords federatedreinforcementlearningbatterycontrolmicrogridsnet-zerobuildingsPPOTRPOCityLearnprivacy-preserving
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

The paper tries to show that a collaborative, privacy-preserving reinforcement learning framework can learn effective battery-charging policies for net-zero buildings. It argues that an untuned Trust Region Policy Optimization (TRPO) can perform on par with a tuned Proximal Policy Optimization (PPO) when trained across multiple buildings using a federated-style averaging scheme and split-learning personalization. The authors build a customized CityLearn environment where self-sustainability is achievable by design, so they know the optimal policy in advance and can measure the optimality gap. The central goal is to demonstrate that federated learning enables generalization across heterogeneous buildings while protecting occupant data, and that even simple net-zero policies are surprisingly hard to learn.

What carries the argument

The mechanism carrying the argument is a federated learning loop in which each building's agent samples its own trajectories and the gradients are averaged across agents, which the authors equate to FedAvg aggregation, plus a split-learning personalization block (an optional private encoding of household-specific features) that is not shared. TRPO's constrained, second-order policy updates provide stable, adaptive step sizes without manual tuning, while PPO's clipped surrogate serves as the tuned baseline. The environment is a stripped-down CityLearn scenario with synthetic data engineered so that solar generation plus battery storage can cover each home's load completely, making the optimal policy known (zero cost and zero emissions).

What would settle it

Run the same experiment in a true federated setting: each building trains its own model on its own local data for several local epochs, then sends only model weights to a central server for averaging, with no direct sharing of observations across buildings, and compare the evaluation reward against the paper's stacked-gradient results; if true federated TRPO does not match a tuned PPO, the central claim is refuted.

Watch

Extended reading notes

Core claim

The paper's central claim is that Federated TRPO, combined with FedAvg-style aggregation and a personal encoding block kept private to each building, is comparable with state-of-the-art federated RL methodologies without hyperparameter tuning. In the authors' experiments, a tuned PPO generally achieves higher rewards and lower cost and emissions, but TRPO converges reliably without tuning and consistently beats the no-battery baseline in both two-building and five-building microgrid scenarios. The paper further reports that grouping features and personal encoding help TRPO in the shifted (more heterogeneous) datasets. The authors conclude that even a simple optimal policy—charge when solar is available, discharge when needed—is hard to learn, and they suggest a pragmatic warm-start strategy: a few PPO iterations followed by TRPO.

Load-bearing premise

The paper assumes that training a single network on observations stacked from all buildings is equivalent to doing actual federated averaging of locally trained models, and the entire 'federated' claim falls if that equivalence does not hold in practice.

Editorial extensions

If this is right

  • If the paper is right, an untuned TRPO can be a drop-in replacement for tuned PPO in federated building-control applications, saving the effort of hyperparameter search.
  • The demonstrated generalization across buildings suggests that privacy-preserving federated learning can pool knowledge across heterogeneous sites and still approach net-zero operation.
  • The finding that simple optimal policies are hard to learn supports curriculum-style training that starts with well-controlled toy scenarios before scaling to real-world complexity.
  • Warm-starting with a few PPO iterations and then switching to TRPO could yield a practical hybrid algorithm for battery control.
  • The synthetic-data testbed with a known optimal policy offers a diagnostic for measuring optimality gaps in RL algorithms beyond this specific application.

Reading between the lines

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

  • A reader should note that the equivalence between the paper's stacked-observation setup and a true federated protocol (with local training steps and communication rounds) is assumed, not tested, so the 'federated' results may not transfer directly to real federated deployments with communication constraints or privacy noise.
  • The reported tables show a large reward gap between tuned PPO and untuned TRPO; the claim of parity may depend on the definition of 'comparable,' and a fair test would tune TRPO as well or hold both methods to the same tuning budget.
  • The synthetic scenario's design—where net-zero is achievable but difficult to learn—could be reused as a benchmark for diagnosing convergence and optimality of other RL algorithms, especially second-order methods.
  • If the stacked-gradient approximation is found to be inaccurate, the paper's conclusions about federated TRPO would need to be re-verified under a real federated averaging scheme, which is a straightforward extension.
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 / 5 minor

Summary. The paper studies battery control in net-zero building microgrids using a customized CityLearn environment with synthetically generated data and a known optimal policy. It compares PPO and TRPO under several collaborative configurations (shallow network, personal encoding, grouped features, and shifted data) and reports that an untuned Federated TRPO is comparable with a tuned federated PPO. The authors also contribute a TorchRL wrapper for CityLearn and release code.

Significance. If the central claim were supported, the paper would offer a useful practical lesson: a hyperparameter-free TRPO could match a tuned PPO in a privacy-preserving shared-control setting for building energy management. The paper has concrete strengths: a reproducible synthetic benchmark with a known optimal policy, five-seed experiments, public code, and a modular environment wrapper. However, the headline claim is directly contradicted by the paper's own quantitative tables, and the experiments do not actually implement a federated protocol. The significance of the work as a federated RL contribution is therefore not established.

major comments (3)
  1. [Abstract, Section 4.2, Tables 1 and 2, Section 5] The central claim that Federated TRPO is comparable with tuned federated PPO is contradicted by the paper's own results. In Table 1, the best TRPO evaluation reward is -0.47064 (pe) while the best PPO evaluation reward is -0.14021 (pe gf); in Table 2, the corresponding values are -0.45768 (base) for TRPO and -0.14662 (pe gf) for PPO. Section 4.2 explicitly states that "the performance of the tuned PPO was superior to that of the TRPO." No standard deviations or statistical tests are reported for these five-seed averages, so the conclusion "Federated TRPO performed on par with a tuned federated PPO" has no statistical or numerical basis in the presented data.
  2. [Appendix A.2] The paper argues that "passing the stacked observations to a single network has the same effect as doing a FedAvg," but this equivalence is not established and is generally false. FedAvg involves multiple local updates between communication rounds, client sampling, and aggregation of model weights; a single forward/backward pass over a concatenated batch of agent observations is a centralized mini-batch update, not a federated protocol with local training steps. Since no communication rounds, partial participation, or privacy mechanism are implemented or analyzed, the claims that the framework is "privacy-preserving" and that the results concern "Federated TRPO" are not supported by the experiments.
  3. [Abstract and Section 5] The abstract claims comparability with "state-of-the-art federated RL methodologies," but the paper contains no comparison with any external federated RL baseline. All comparisons are among PPO and TRPO variants within the proposed setup. The conclusion's additional recommendation to warm-start with PPO and switch to TRPO is also not tested anywhere in the experiments.
minor comments (5)
  1. [Tables 1 and 2] The tables report means over five seeds but no standard deviations or confidence intervals, even though the accompanying figures show substantial variance; please add dispersion measures to the tables.
  2. [Table 2 caption] The caption reads "Values in the table represent the average for 5" and appears to be missing the word "seeds."
  3. [Section 4.2] The sentence "PPO overperforms TRPO significantly, but we highlight that we didn't spend time fine-tuning it" is ambiguous about whether "it" refers to TRPO or PPO; Appendix C indicates PPO was tuned while TRPO was not, so please rephrase.
  4. [Appendix B] The description of the selling-price margin as "a margin of 40% of the lowest daily electricity pricing" is unclear; specify exactly how the selling price is computed from the daily pricing series.
  5. [Section 3.2 and Appendix A.2] Figure 1 labels the Personal Encoding block as a local component, but Appendix A.2 states that "we are not in the process of training a private part of the policy network" and uses a one-hot encoder. Please clarify what the personal encoding block actually contains and how it relates to split learning.

Circularity Check

1 steps flagged · score 2.0 of 10

No derivation-chain circularity; the 'Federated' claim is self-definitional because Appendix A.2 equates centralized stacked training with FedAvg.

  1. self definitional [Appendix A.2 (Federated RL)]
    "Passing the stacked observations to a single network has the same effect as doing a FedAvg: each agent samples their trajectories, and after a forward pass, the backward pass will propagate the average gradient of all of them, which is, in practice, the same behavior we expect from the FL methodology."

    The advertised central result is about 'Federated TRPO'. Appendix A.2 defines the experimental setup by equating a single network seeing stacked observations with FedAvg, and explicitly states 'we are not required to implement the exact flow of FL'. Hence every 'Federated TRPO' performance number is, by the paper's own stipulation, a centralized single-network number. The conclusion 'Federated TRPO performed on par with a tuned federated PPO' therefore reduces to 'our centralized stacked-network TRPO performed on par with our centralized stacked-network PPO'—the very experiments that were run—so the 'federated' label carries no independent empirical content.

full rationale

Strictly, this paper contains no mathematical derivation chain whose outputs are equivalent to its inputs by construction. The 'known optimal policy' is an external benchmark built from the synthetic-data rule, not fitted from the agents' rewards, and the comparisons to tuned PPO, while internally inconsistent with the 'on par' sentence (Tables 1-2 show TRPO eval rewards around -0.47 vs PPO around -0.14), are an accuracy/consistency problem, not a circular one. The one genuinely self-referential step is Appendix A.2, where the paper stipulates that passing stacked observations to one network 'has the same effect as doing a FedAvg'. This is load-bearing for every 'Federated TRPO' statement: the federated label is attached by definition rather than by running a distributed protocol, so results labeled 'federated' are, by the paper's own equivalence, results about a centralized single network. I count this as a minor self-definitional labeling issue, not as a derivation that is forced by construction; the underlying empirical measurements remain self-contained. No load-bearing self-citations or imported uniqueness theorems appear.

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

The central result rests on a synthetic environment designed so the optimal policy is known, and on an approximation of federated averaging by centralized stacking. Both are declared in the paper but limit the scope of the claims: the experiments show how collaborative training behaves in a simplified simulator, not how a real federated protocol would behave with privacy constraints.

free parameters (3)
  • Reward weights W_C and W_G = 0.4 and 0.6
    Set by the authors to prioritize emissions over cost; every reported cost, emission, and reward value depends on these weights (Section 3.1).
  • Selling-price margin = 40% of the lowest daily electricity price
    Introduced in Appendix B to prevent profitable arbitrage between buying and selling prices; this changes the optimal policy and the difficulty of the task.
  • PPO hyperparameters = not specified in the text
    Found by Wandb Bayesian sweeps on the evaluation reward (Appendix C); only PPO is tuned, making the comparison with untuned TRPO asymmetric.
assumptions (4)
  • ad hoc to paper Centralized stacking of all agents' observations through one shared network has the same effect as FedAvg.
    Stated in Appendix A.2 and used to call the experiments federated without implementing local update steps, communication rounds, or privacy guarantees.
  • domain assumption The synthetically generated solar and load profiles guarantee net-zero feasibility, so the known optimal policy has zero cost and zero emissions.
    Used in Section 3.1 and Appendix B as the oracle against which all policies are scored.
  • domain assumption Batteries do not degrade, so the optimal policy is a simple daily charge and discharge cycle.
    Stated in Section 3.1 as a simplification; it makes the environment tractable but limits transfer to real storage systems.
  • domain assumption The reward function with weights W_C and W_G plus the infeasibility penalty fully captures the real objective.
    Defined in Table 3; this reward design determines what the agents optimize and what the reported numbers mean.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Generalising Battery Control in Net-Zero Buildings via Personalised Federated RL." pith.science (2026). https://pith.science/paper/DDMGWCZS

@misc{pith2026241220946,
  author       = {Pith},
  title        = {Pith review of: Generalising Battery Control in Net-Zero Buildings via Personalised Federated RL},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/DDMGWCZS}},
  note         = {Machine review of arXiv:2412.20946}
}
read the original abstract

This work studies the challenge of optimal energy management in building-based microgrids through a collaborative and privacy-preserving framework. We evaluated two common RL algorithms (PPO and TRPO) in different collaborative setups to manage distributed energy resources (DERs) efficiently. Using a customized version of the CityLearn environment and synthetically generated data, we simulate and design net-zero energy scenarios for microgrids composed of multiple buildings. Our approach emphasizes reducing energy costs and carbon emissions while ensuring privacy. Experimental results demonstrate that Federated TRPO is comparable with state-of-the-art federated RL methodologies without hyperparameter tuning. The proposed framework highlights the feasibility of collaborative learning for achieving optimal control policies in energy systems, advancing the goals of sustainable and efficient smart grids. Our code is accessible \href{https://github.com/Optimization-and-Machine-Learning-Lab/energy_fed_trpo.git}{\textit{this repo}}.

Figures

Figures reproduced from arXiv: 2412.20946 by the authors.

Figure 1
Figure 1. Overview of our models: We use the same type of net￾work for Policy and State-Value networks, changing only the out￾put layer. The Personal Encoding block is optional. 3.2. Model We explore the advantages of a collaborative learning ap￾proach for the case of microgrids, given their distributed nature: each household has an agent that explores and learns from different sections of the state space, given the indi￾vidu… view at source ↗
Figure 2
Figure 2. Optimal Actions and State of Charge: Mean and variance throughout the day, considering a complete year, for a building. By design, we know the optimal policy that must yield zero emissions and cost beforehand. 8 [PITH_FULL_IMAGE:figures/full_fig_p008_2.png] view at source ↗
Figure 3
Figure 3. Sample of the Mean and Variance of Solar Generation and Non-Shiftable Load over 24 hours for a year of data for one of the buildings. We generated our synthetic data by altering the Non-Shiftable Load time series using a simple rule that defines the policy we want to learn: the households have enough energy and battery capacity to serve their demand when there is solar energy and to store what is necessary when ther… view at source ↗
Figures from the paper (4 more)
Figure 4
Figure 4. Figure 4: Mean and Variance of Electricity Pricing (ToU) and the Selling Pricing over 24 hours for a year of data. C. Hyperparameters We perform a hyperparameter search with Wandb sweeps (Biewald, 2020), using Bayesian search to find the best configura￾tions for PPO and TRPO wit…
Figure 5
Figure 5. Figure 5: Best PPO policies: Plots show mean with an envelope of one standard deviation computed from the five different seeds. Increasing the number of buildings makes it harder for the agents to approach net-zero energy and training with the shifted version of the dataset, som…
Figure 6
Figure 6. Figure 6: Best TRPO policies: Plots show mean with an envelope of one standard deviation computed from the five different seeds. some configurations (model with personal encoding and grouping) limited the variance. They beat the baseline on each run, which is a highlight conside…
Figure 7
Figure 7. Figure 7: Best policies for the 2-building environment: Comparison of learned policy against the optimal policy, averaged for the five seeds. In [PITH_FULL_IMAGE:figures/full_fig_p011_7.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

39 extracted references · 23 canonical work pages

  1. [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. [2]

    Barbalho, P. I. N., Moraes, A. L., Freitas, V. A. L., Barra, P. H. A., Fernandes, R. A. S., and Coury, D. V. Reinforcement learning solutions for microgrid control and management: A survey. IEEE Access, 13: 0 1--35, 2025. doi:10.1109/ACCESS.2025.3546578

  3. [3]

    Continual Reinforcement Learning for HVAC Systems Control: Integrating Hypernetworks and Transfer Learning

    Bekal, G. U., Ghareeb, A., and Pujari, A. Continual reinforcement learning for hvac systems control: Integrating hypernetworks and transfer learning. arXiv preprint, 2025. URL https://arxiv.org/abs/2503.19212

  4. [4]

    Experiment tracking with weights and biases, 2020

    Biewald, L. Experiment tracking with weights and biases, 2020. URL https://www.wandb.com/. Software available from wandb.com

  5. [5]

    D., and Moens, V

    Bou, A., Bettini, M., Dittert, S., Kumar, V., Sodhani, S., Yang, X., Fabritiis, G. D., and Moens, V. Torchrl: A data-driven decision-making library for pytorch, 2023. URL https://arxiv.org/abs/2306.00577

  6. [6]

    Model-predictive control and reinforcement learning in multi-energy system case studies

    Ceusters, G., Rodr \' guez, R. C., Garc \' a, A. B., Franke, R., Deconinck, G., Helsen, L., Now \' e , A., Messagie, M., and Camargo, L. R. Model-predictive control and reinforcement learning in multi-energy system case studies. CoRR, abs/2104.09785, 2021. URL https://arxiv.org/abs/2104.09785

  7. [7]

    M., Guill \' e n, R

    Cuadrado, N. M., Guill \' e n, R. A. G., and Tak \' a c, M. FRESCO: federated reinforcement energy system for cooperative optimization. In Maughan, K., Liu, R., and Burns, T. F. (eds.), The First Tiny Papers Track at ICLR 2023, Tiny Papers @ ICLR 2023, Kigali, Rwanda, May 5, 2023 . OpenReview.net, 2023 a . URL https://openreview.net/pdf?id=75mWq5j4iso

  8. [8]

    MAHTM: A Multi-Agent Framework for Hierarchical Transactive Microgrids

    Cuadrado, N. M., Guti \' e rrez, R. A., Zhu, Y., and Tak \' a c, M. MAHTM: A multi-agent framework for hierarchical transactive microgrids. CoRR, abs/2303.08447, 2023 b . doi:10.48550/arXiv.2303.08447. URL https://doi.org/10.48550/arXiv.2303.08447

Show all 39 references
  1. [9]

    Heterofl: Computation and communication efficient federated learning for heterogeneous clients

    Diao, E., Ding, J., and Tarokh, V. Heterofl: Computation and communication efficient federated learning for heterogeneous clients. In 9th International Conference on Learning Representations, ICLR 2021, Virtual Event, Austria, May 3-7, 2021 . OpenReview.net, 2021. URL https://...

  2. [10]

    Potential of artificial intelligence in reducing energy and carbon emissions of commercial buildings at scale

    Ding, C., Ke, J., Levine, M., Zhou, N., et al. Potential of artificial intelligence in reducing energy and carbon emissions of commercial buildings at scale. Nature Communications, 15 0 (5916), 2024. doi:10.1038/s41467-024-50088-4

  3. [11]

    Gernaat, D. E. H. J., de Boer, H. S., Daioglou, V., Yalew, S. G., M \"u ller, C., and van Vuuren, D. P. Climate change impacts on renewable energy supply. Nature Climate Change, 11 0 (2): 0 119--125, Feb 2021. ISSN 1758-6798. doi:10.1038/s41558-020-00949-9. URL https://doi.org...

  4. [12]

    C., Klein, T., and Nabi, M

    Geyer, R. C., Klein, T., and Nabi, M. Differentially private federated learning: A client level perspective. CoRR, abs/1712.07557, 2017. URL http://arxiv.org/abs/1712.07557

  5. [13]

    G., and Moon, J

    Han, D., Kim, D., Choi, M., Brinton, C. G., and Moon, J. Splitgp: Achieving both generalization and personalization in federated learning. CoRR, abs/2212.08343, 2022. doi:10.48550/arXiv.2212.08343. URL https://doi.org/10.48550/arXiv.2212.08343

  6. [14]

    Buildings -- energy system, 2024

    International Energy Agency . Buildings -- energy system, 2024. URL https://www.iea.org/energy-system/buildings. Accessed: 7 June 2025

  7. [15]

    Climate change synthesis report

    IPCC. Climate change synthesis report. https://www.ipcc.ch/report/ar6/syr/downloads/report/IPCC_AR6_SYR_SPM.pdf, 2023. (Accessed on 09/13/2024)

  8. [16]

    B., Avent, B., Bellet, A., and et al

    Kairouz, P., McMahan, H. B., Avent, B., Bellet, A., and et al. Advances and open problems in federated learning. Foundations and Trends in Machine Learning, 14 0 (1--2): 0 1--210, 2021. doi:10.1561/2200000083

  9. [17]

    and Langford, J

    Kakade, S. and Langford, J. Approximately optimal approximate reinforcement learning. In Proceedings of the Nineteenth International Conference on Machine Learning, pp.\ 267--274, 2002

  10. [18]

    U., and Jaggi, M

    Koloskova, A., Stich, S. U., and Jaggi, M. Decentralized stochastic optimization and gossip algorithms with compressed communication. In Chaudhuri, K. and Salakhutdinov, R. (eds.), Proceedings of the 36th International Conference on Machine Learning, ICML 2019, 9-15 June 2019,...

  11. [19]

    Privacy-preserving energy management of a shared energy storage system for smart buildings: A federated deep reinforcement learning approach

    Lee, S., Xie, L., and Choi, D.-H. Privacy-preserving energy management of a shared energy storage system for smart buildings: A federated deep reinforcement learning approach. Sensors, 21 0 (14): 0 4898, 2021. doi:10.3390/s21144898

  12. [20]

    McMahan, B., Moore, E., Ramage, D., Hampson, S., and y Arcas, B. A. Communication-efficient learning of deep networks from decentralized data. In Singh, A. and Zhu, X. J. (eds.), Proceedings of the 20th International Conference on Artificial Intelligence and Statistics, AISTAT...

  13. [21]

    Review and evaluation of multi-agent control applications for energy management in buildings

    Michailidis, P., Michailidis, I., and Kosmatopoulos, E. Review and evaluation of multi-agent control applications for energy management in buildings. Energies (19961073), 17 0 (19), 2024

  14. [22]

    R., Dey, S., and Henze, G

    Nagy, Z., V\' a zquez-Canteli, J. R., Dey, S., and Henze, G. The citylearn challenge 2021. In Proceedings of the 8th ACM International Conference on Systems for Energy-Efficient Buildings, Cities, and Transportation, BuildSys '21, pp.\ 218–219, New York, NY, USA, 2021. Associa...

  15. [23]

    Grid integration of zero net energy communities

    Narayanamurthy, R., Handa, R., Tumilowicz, N., Herro, C., and Shah, S. Grid integration of zero net energy communities. ACEEE Summer Study Energy Effic. Build, 2016

  16. [24]

    Real-world challenges for multi-agent reinforcement learning in grid-interactive buildings

    Nweye, K., Liu, B., Stone, P., and Nagy, Z. Real-world challenges for multi-agent reinforcement learning in grid-interactive buildings. Energy and AI, 10: 0 100202, 2022 a

  17. [25]

    The citylearn challenge 2022: Overview, results, and lessons learned

    Nweye, K., Nagy, Z., Mohanty, S., Chakraborty, D., Sankaranarayanan, S., Hong, T., Dey, S., Henze, G., Drgona, J., Lin, F., et al. The citylearn challenge 2022: Overview, results, and lessons learned. NeurIPS 2022 Competition Track, pp.\ 85--103, 2022 b

  18. [26]

    Merlin: Multi-agent offline and transfer learning for occupant-centric energy flexible operation of grid-interactive communities using smart meter data and citylearn

    Nweye, K., Sankaranarayanan, S., and Nagy, Z. Merlin: Multi-agent offline and transfer learning for occupant-centric energy flexible operation of grid-interactive communities using smart meter data and citylearn. CoRR, 2023

  19. [27]

    Citylearn v2: energy-flexible, resilient, occupant-centric, and carbon-aware management of grid-interactive communities

    Nweye, K., Kaspar, K., Buscemi, G., Fonseca, T., Pinto, G., Ghose, D., Duddukuru, S., Pratapa, P., Li, H., Mohammadi, J., Lino Ferreira, L., Hong, T., Ouf, M., Capozzoli, A., and Nagy, Z. Citylearn v2: energy-flexible, resilient, occupant-centric, and carbon-aware management o...

  20. [28]

    Perera, A. T. D., Nik, V. M., Chen, D., Scartezzini, J.-L., and Hong, T. Quantifying the impacts of climate change and extreme climate events on energy systems. Nature Energy, 5 0 (2): 0 150--159, Feb 2020. ISSN 2058-7546. doi:10.1038/s41560-020-0558-0. URL https://doi.org/10....

  21. [29]

    L., Kaack, L

    Rolnick, D., Donti, P. L., Kaack, L. H., Kochanski, K., Lacoste, A., Sankaran, K., Ross, A. S., Milojevic - Dupont, N., Jaques, N., Waldman - Brown, A., Luccioni, A., Maharaj, T., Sherwin, E. D., Mukkavilli, S. K., K \" o rding, K. P., Gomes, C. P., Ng, A. Y., Hassabis, D., Pl...

  22. [30]

    Proximal policy optimization algorithms, 2017

    Schulman, J., Wolski, F., Dhariwal, P., Radford, A., and Klimov, O. Proximal policy optimization algorithms, 2017. URL https://arxiv.org/abs/1707.06347

  23. [32]

    Federated reinforcement learning for sustainable and cost-efficient energy management

    Sievers, J., Henrich, P., Beichter, M., Mikut, R., Hagenmeyer, V., Blank, T., and Simon, F. Federated reinforcement learning for sustainable and cost-efficient energy management. Energy and AI, 21: 0 100521, 2025 b . doi:10.1016/j.egyai.2025.100521

  24. [33]

    H., Zhang, N., Li, F., Chen, T., and Cao, H

    Su, Z., Wang, Y., Luan, T. H., Zhang, N., Li, F., Chen, T., and Cao, H. Secure and efficient federated learning for smart grid with edge-cloud collaboration. IEEE Trans. Ind. Informatics , 18 0 (2): 0 1333--1344, 2022. doi:10.1109/TII.2021.3095506. URL https://doi.org/10.1109/...

  25. [34]

    Ton, D. T. and Smith, M. A. The u.s. department of energy's microgrid initiative. The Electricity Journal, 25 0 (8): 0 84--94, 2012. ISSN 1040-6190. doi:https://doi.org/10.1016/j.tej.2012.09.013. URL https://www.sciencedirect.com/science/article/pii/S1040619012002254

  26. [35]

    K., Balis, J

    Towers, M., Kwiatkowski, A., Terry, J. K., Balis, J. U., de Cola, G., Deleu, T., Goulão, M., Kallinteris, A., Krimmel, M., KG, A., Perez-Vicente, R., Pierré, A., Schulhoff, S., Tai, J. J., Tan, H. J. S., and Younis, O. G. Gymnasium: A Standard Interface for Reinforcement Learn...

  27. [36]

    R., K \" a mpf, J

    V \' a zquez - Canteli, J. R., K \" a mpf, J. H., Henze, G., and Nagy, Z. Citylearn v1.0: An openai gym environment for demand response with deep reinforcement learning. In Proceedings of the 6th ACM International Conference on Systems for Energy-Efficient Buildings, Cities, a...

  28. [37]

    Split learning for health: Distributed deep learning without sharing raw patient data

    Vepakomma, P., Gupta, O., Swedish, T., and Raskar, R. Split learning for health: Distributed deep learning without sharing raw patient data. CoRR, abs/1812.00564, 2018. URL http://arxiv.org/abs/1812.00564

  29. [38]

    End-use load profiles for the u.s

    Wilson, Eric, Parker, Andrew, Fontanini, Anthony, Present, Elaina, Reyna, Janet, Adhikari, Rajendra, Bianchi, Carlo, CaraDonna, Christopher, Dahlhausen, Matthew, Kim, Janghyun, LeBar, Amy, Liu, Lixi, Praprost, Marlena, White, Philip, Zhang, Liang, DeWitt, Peter, Merket, Noel, ...

  30. [39]

    R., Ning, L., and Singhal, K

    Yuan, H., Morningstar, W. R., Ning, L., and Singhal, K. What do we mean by generalization in federated learning? In The Tenth International Conference on Learning Representations, ICLR 2022, Virtual Event, April 25-29, 2022 . OpenReview.net, 2022. URL https://openreview.net/fo...

  31. [40]

    J., Qin, Y., et al

    Zheng, D., Tong, D., Davis, S. J., Qin, Y., et al. Climate change impacts on the extreme power shortage events of wind–solar supply systems worldwide during 1980–2022. Nature Communications, 15 0 (5225), 2024. doi:10.1038/s41467-024-48966-y

Pith tools

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