ADGEfficiency / energy-py

Reinforcement learning for energy systems

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

energy-py

Build Status

energy-py is a framework for running reinforcement learning experiments on energy environments.

The library is focused on electric battery storage, and offers a implementation of a many batteries operating in parallel.

energy-py includes an implementation of the Soft Actor-Critic reinforcement learning agent, implementated in Tensorflow 2:

  • test & train episodes based on historical Australian electricity price data,
  • checkpoints & restarts,
  • logging in Tensorboard.

energy-py is built and maintained by Adam Green - adam.green@adgefficiency.com.

Setup

$ make setup

Test

$ make test

Running experiments

energypy has a high level API to run a specific run of an experiment from a JSON config file.

The most interesting experiment is to run battery storage for price arbitrage in the Australian electricity market. This requires grabbing some data from S3. The command below will download a pre-made dataset and unzip it to ./dataset:

$ make pulls3-dataset

You can then run the experiment from a JSON file:

$ energypy benchmarks/nem-battery.json

Results are saved into ./experiments/{env_name}/{run_name}:

$ tree -L 3 experiments
experiments/
└── battery
    ├── nine
    │   ├── checkpoints
    │   ├── hyperparameters.json
    │   ├── logs
    │   └── tensorboard
    └── random.pkl

Also provide wrappers around two gym environments - Pendulum and Lunar Lander:

$ energypy benchmarks/pendulum.json

Running the Lunar Lander experiment has a dependency on Swig and pybox2d - which can require a bit of elbow-grease to setup depending on your environment.

$ energypy benchmarks/lunar.json

About

Reinforcement learning for energy systems

License:MIT License


Languages

Language:Python 99.0%Language:Makefile 1.0%