A python module desgined for RL logging, monitoring and experiments managing.
Project description
UtilsRL
A util python module designed for reinforcement learning.
Installation
You can install this package directly from pypi:
pip install UtilsRL
After installation, you may still need to configure some other dependencies based on your platform, such as PyTorch.
Features & Usage
Monitor
Monitor listens at the main loop of the training process, and displays the process with tqdm meter.
monitor = Monitor(desc="test_monitor")
for i in monitor.listen(range(5)):
time.sleep(0.1)
You can register callback functions which will be triggered at certain stage of the training. For example, we can register a callback which will email us when training is done:
monitor = Monitor(desc="test_monitor")
monitor.register_callback(
name= "email me at the end of training",
on = "exit",
callback = Monitor.email,
...
)
You can also register context variables for training, which will be automatically managed by monitor. In the example below, the registered context variables (i.e. self.actor
and local_var
) will be saved every 100 iters.
monitor = Monitor(desc="test_monitor", out_dir="./out")
def train():
local_var = ...
local_var = monitor.register_context("local_var", save_every=100)
for i_epoch in monitor.listen(range(1000)):
# do training
train()
As a more complex example, we can use the Monitor to resume training from a certain iteration, and restore the context variables from checkpoints:
class Trainer():
def __init__(self):
self.actor = ...
def train(self):
local_var = ...
# load previous saved checkpoints specified by `load_path`
self.actor, local_var = \
monitor.register_context(["self.actor", "local_var"], load_path="/path/to/checkpoint/dir").values()
# use `initial` to designate the start point
for i_epoch in monitor.listen(range(1000), initial=100):
# continue training
Logger
Logger provides a rather shallow capsulation for torch.utils.tensorboard.SummaryWriter
.
from UtilsRL.logger import TensorboardLogger
# create a logger, with terminal output enabled and file logging disabled
logger = TensorboardLogger(log_dir="./logs", name="debug", terminal=True, txt=False)
# log a sentence in color blue.
logger.log_str("This is a sentence", type="LOG")
# log sentence in color red.
logger.log_str("Here occurs an error", type="ERROR")
# log scalar and a dict of scalars repectively
logger.log_scala(tag="var_name", value=1.0, step=1)
logger.log_scalas(main_tag="group_name", tag_scalar_dict={
"var1": 1.0,
"var2": 2.0
}, step=1)
Under Development
- device utils
- arg-parsing utils
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file UtilsRL-0.1.1.tar.gz
.
File metadata
- Download URL: UtilsRL-0.1.1.tar.gz
- Upload date:
- Size: 3.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 18167f8ef61d6a7024089cc16d118bb738c7f885be85feb260965e342e9f4cb9 |
|
MD5 | 908a1b350b680596384bf880c4f21262 |
|
BLAKE2b-256 | 1974035106d9127f89963999ff29fb31a17f90d3c43c8f66973fd1e7717ad786 |
File details
Details for the file UtilsRL-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: UtilsRL-0.1.1-py3-none-any.whl
- Upload date:
- Size: 3.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0feb82d3577a54a90f129caf006c073cb7a2f0c7bf3c15e00f4141ec96c3a4ae |
|
MD5 | 5e07613e96c719192c90cdd5afc32767 |
|
BLAKE2b-256 | 543a4c783f78317ecfbc467b729853d24d87662b63d4379d7a0af8f14f3fbbef |