mirror of
https://github.com/saymrwulf/stable-baselines3.git
synced 2026-05-18 21:30:19 +00:00
Add logger and Monitor wrapper
This commit is contained in:
parent
ef50bb81e8
commit
dbaa5daca6
2 changed files with 655 additions and 0 deletions
515
torchy_baselines/common/logger.py
Normal file
515
torchy_baselines/common/logger.py
Normal file
|
|
@ -0,0 +1,515 @@
|
|||
"""
|
||||
Taken from stable-baselines
|
||||
"""
|
||||
import os
|
||||
import sys
|
||||
import json
|
||||
import time
|
||||
import datetime
|
||||
import tempfile
|
||||
import warnings
|
||||
from collections import defaultdict
|
||||
|
||||
DEBUG = 10
|
||||
INFO = 20
|
||||
WARN = 30
|
||||
ERROR = 40
|
||||
DISABLED = 50
|
||||
|
||||
|
||||
class KVWriter(object):
|
||||
"""
|
||||
Key Value writer
|
||||
"""
|
||||
def writekvs(self, kvs):
|
||||
"""
|
||||
write a dictionary to file
|
||||
|
||||
:param kvs: (dict)
|
||||
"""
|
||||
raise NotImplementedError
|
||||
|
||||
|
||||
class SeqWriter(object):
|
||||
"""
|
||||
sequence writer
|
||||
"""
|
||||
def writeseq(self, seq):
|
||||
"""
|
||||
write an array to file
|
||||
|
||||
:param seq: (list)
|
||||
"""
|
||||
raise NotImplementedError
|
||||
|
||||
|
||||
class HumanOutputFormat(KVWriter, SeqWriter):
|
||||
def __init__(self, filename_or_file):
|
||||
"""
|
||||
log to a file, in a human readable format
|
||||
|
||||
:param filename_or_file: (str or File) the file to write the log to
|
||||
"""
|
||||
if isinstance(filename_or_file, str):
|
||||
self.file = open(filename_or_file, 'wt')
|
||||
self.own_file = True
|
||||
else:
|
||||
assert hasattr(filename_or_file, 'write'), 'Expected file or str, got {}'.format(filename_or_file)
|
||||
self.file = filename_or_file
|
||||
self.own_file = False
|
||||
|
||||
def writekvs(self, kvs):
|
||||
# Create strings for printing
|
||||
key2str = {}
|
||||
for (key, val) in sorted(kvs.items()):
|
||||
if isinstance(val, float):
|
||||
valstr = '%-8.3g' % (val,)
|
||||
else:
|
||||
valstr = str(val)
|
||||
key2str[self._truncate(key)] = self._truncate(valstr)
|
||||
|
||||
# Find max widths
|
||||
if len(key2str) == 0:
|
||||
warnings.warn('Tried to write empty key-value dict')
|
||||
return
|
||||
else:
|
||||
keywidth = max(map(len, key2str.keys()))
|
||||
valwidth = max(map(len, key2str.values()))
|
||||
|
||||
# Write out the data
|
||||
dashes = '-' * (keywidth + valwidth + 7)
|
||||
lines = [dashes]
|
||||
for (key, val) in sorted(key2str.items()):
|
||||
lines.append('| %s%s | %s%s |' % (
|
||||
key,
|
||||
' ' * (keywidth - len(key)),
|
||||
val,
|
||||
' ' * (valwidth - len(val)),
|
||||
))
|
||||
lines.append(dashes)
|
||||
self.file.write('\n'.join(lines) + '\n')
|
||||
|
||||
# Flush the output to the file
|
||||
self.file.flush()
|
||||
|
||||
@classmethod
|
||||
def _truncate(cls, string):
|
||||
return string[:20] + '...' if len(string) > 23 else string
|
||||
|
||||
def writeseq(self, seq):
|
||||
seq = list(seq)
|
||||
for (i, elem) in enumerate(seq):
|
||||
self.file.write(elem)
|
||||
if i < len(seq) - 1: # add space unless this is the last one
|
||||
self.file.write(' ')
|
||||
self.file.write('\n')
|
||||
self.file.flush()
|
||||
|
||||
def close(self):
|
||||
"""
|
||||
closes the file
|
||||
"""
|
||||
if self.own_file:
|
||||
self.file.close()
|
||||
|
||||
|
||||
class JSONOutputFormat(KVWriter):
|
||||
def __init__(self, filename):
|
||||
"""
|
||||
log to a file, in the JSON format
|
||||
|
||||
:param filename: (str) the file to write the log to
|
||||
"""
|
||||
self.file = open(filename, 'wt')
|
||||
|
||||
def writekvs(self, kvs):
|
||||
for key, value in sorted(kvs.items()):
|
||||
if hasattr(value, 'dtype'):
|
||||
if value.shape == () or len(value) == 1:
|
||||
# if value is a dimensionless numpy array or of length 1, serialize as a float
|
||||
kvs[key] = float(value)
|
||||
else:
|
||||
# otherwise, a value is a numpy array, serialize as a list or nested lists
|
||||
kvs[key] = value.tolist()
|
||||
self.file.write(json.dumps(kvs) + '\n')
|
||||
self.file.flush()
|
||||
|
||||
def close(self):
|
||||
"""
|
||||
closes the file
|
||||
"""
|
||||
self.file.close()
|
||||
|
||||
|
||||
class CSVOutputFormat(KVWriter):
|
||||
def __init__(self, filename):
|
||||
"""
|
||||
log to a file, in a CSV format
|
||||
|
||||
:param filename: (str) the file to write the log to
|
||||
"""
|
||||
self.file = open(filename, 'w+t')
|
||||
self.keys = []
|
||||
self.sep = ','
|
||||
|
||||
def writekvs(self, kvs):
|
||||
# Add our current row to the history
|
||||
extra_keys = kvs.keys() - self.keys
|
||||
if extra_keys:
|
||||
self.keys.extend(extra_keys)
|
||||
self.file.seek(0)
|
||||
lines = self.file.readlines()
|
||||
self.file.seek(0)
|
||||
for (i, key) in enumerate(self.keys):
|
||||
if i > 0:
|
||||
self.file.write(',')
|
||||
self.file.write(key)
|
||||
self.file.write('\n')
|
||||
for line in lines[1:]:
|
||||
self.file.write(line[:-1])
|
||||
self.file.write(self.sep * len(extra_keys))
|
||||
self.file.write('\n')
|
||||
for i, key in enumerate(self.keys):
|
||||
if i > 0:
|
||||
self.file.write(',')
|
||||
value = kvs.get(key)
|
||||
if value is not None:
|
||||
self.file.write(str(value))
|
||||
self.file.write('\n')
|
||||
self.file.flush()
|
||||
|
||||
def close(self):
|
||||
"""
|
||||
closes the file
|
||||
"""
|
||||
self.file.close()
|
||||
|
||||
|
||||
def summary_val(key, value):
|
||||
"""
|
||||
:param key: (str)
|
||||
:param value: (float)
|
||||
"""
|
||||
kwargs = {'tag': key, 'simple_value': float(value)}
|
||||
return tf.Summary.Value(**kwargs)
|
||||
|
||||
|
||||
def valid_float_value(value):
|
||||
"""
|
||||
Returns True if the value can be successfully cast into a float
|
||||
|
||||
:param value: (Any) the value to check
|
||||
:return: (bool)
|
||||
"""
|
||||
try:
|
||||
float(value)
|
||||
return True
|
||||
except TypeError:
|
||||
return False
|
||||
|
||||
|
||||
def make_output_format(_format, ev_dir, log_suffix=''):
|
||||
"""
|
||||
return a logger for the requested format
|
||||
|
||||
:param _format: (str) the requested format to log to ('stdout', 'log', 'json' or 'csv')
|
||||
:param ev_dir: (str) the logging directory
|
||||
:param log_suffix: (str) the suffix for the log file
|
||||
:return: (KVWrite) the logger
|
||||
"""
|
||||
os.makedirs(ev_dir, exist_ok=True)
|
||||
if _format == 'stdout':
|
||||
return HumanOutputFormat(sys.stdout)
|
||||
elif _format == 'log':
|
||||
return HumanOutputFormat(os.path.join(ev_dir, 'log%s.txt' % log_suffix))
|
||||
elif _format == 'json':
|
||||
return JSONOutputFormat(os.path.join(ev_dir, 'progress%s.json' % log_suffix))
|
||||
elif _format == 'csv':
|
||||
return CSVOutputFormat(os.path.join(ev_dir, 'progress%s.csv' % log_suffix))
|
||||
else:
|
||||
raise ValueError('Unknown format specified: %s' % (_format,))
|
||||
|
||||
|
||||
# ================================================================
|
||||
# API
|
||||
# ================================================================
|
||||
|
||||
def logkv(key, val):
|
||||
"""
|
||||
Log a value of some diagnostic
|
||||
Call this once for each diagnostic quantity, each iteration
|
||||
If called many times, last value will be used.
|
||||
|
||||
:param key: (Any) save to log this key
|
||||
:param val: (Any) save to log this value
|
||||
"""
|
||||
Logger.CURRENT.logkv(key, val)
|
||||
|
||||
|
||||
def logkv_mean(key, val):
|
||||
"""
|
||||
The same as logkv(), but if called many times, values averaged.
|
||||
|
||||
:param key: (Any) save to log this key
|
||||
:param val: (Number) save to log this value
|
||||
"""
|
||||
Logger.CURRENT.logkv_mean(key, val)
|
||||
|
||||
|
||||
def logkvs(key_values):
|
||||
"""
|
||||
Log a dictionary of key-value pairs
|
||||
|
||||
:param key_values: (dict) the list of keys and values to save to log
|
||||
"""
|
||||
for key, value in key_values.items():
|
||||
logkv(key, value)
|
||||
|
||||
|
||||
def dumpkvs():
|
||||
"""
|
||||
Write all of the diagnostics from the current iteration
|
||||
"""
|
||||
Logger.CURRENT.dumpkvs()
|
||||
|
||||
|
||||
def getkvs():
|
||||
"""
|
||||
get the key values logs
|
||||
|
||||
:return: (dict) the logged values
|
||||
"""
|
||||
return Logger.CURRENT.name2val
|
||||
|
||||
|
||||
def log(*args, level=INFO):
|
||||
"""
|
||||
Write the sequence of args, with no separators,
|
||||
to the console and output files (if you've configured an output file).
|
||||
|
||||
level: int. (see logger.py docs) If the global logger level is higher than
|
||||
the level argument here, don't print to stdout.
|
||||
|
||||
:param args: (list) log the arguments
|
||||
:param level: (int) the logging level (can be DEBUG=10, INFO=20, WARN=30, ERROR=40, DISABLED=50)
|
||||
"""
|
||||
Logger.CURRENT.log(*args, level=level)
|
||||
|
||||
|
||||
def debug(*args):
|
||||
"""
|
||||
Write the sequence of args, with no separators,
|
||||
to the console and output files (if you've configured an output file).
|
||||
Using the DEBUG level.
|
||||
|
||||
:param args: (list) log the arguments
|
||||
"""
|
||||
log(*args, level=DEBUG)
|
||||
|
||||
|
||||
def info(*args):
|
||||
"""
|
||||
Write the sequence of args, with no separators,
|
||||
to the console and output files (if you've configured an output file).
|
||||
Using the INFO level.
|
||||
|
||||
:param args: (list) log the arguments
|
||||
"""
|
||||
log(*args, level=INFO)
|
||||
|
||||
|
||||
def warn(*args):
|
||||
"""
|
||||
Write the sequence of args, with no separators,
|
||||
to the console and output files (if you've configured an output file).
|
||||
Using the WARN level.
|
||||
|
||||
:param args: (list) log the arguments
|
||||
"""
|
||||
log(*args, level=WARN)
|
||||
|
||||
|
||||
def error(*args):
|
||||
"""
|
||||
Write the sequence of args, with no separators,
|
||||
to the console and output files (if you've configured an output file).
|
||||
Using the ERROR level.
|
||||
|
||||
:param args: (list) log the arguments
|
||||
"""
|
||||
log(*args, level=ERROR)
|
||||
|
||||
|
||||
def set_level(level):
|
||||
"""
|
||||
Set logging threshold on current logger.
|
||||
|
||||
:param level: (int) the logging level (can be DEBUG=10, INFO=20, WARN=30, ERROR=40, DISABLED=50)
|
||||
"""
|
||||
Logger.CURRENT.set_level(level)
|
||||
|
||||
|
||||
def get_level():
|
||||
"""
|
||||
Get logging threshold on current logger.
|
||||
:return: (int) the logging level (can be DEBUG=10, INFO=20, WARN=30, ERROR=40, DISABLED=50)
|
||||
"""
|
||||
return Logger.CURRENT.level
|
||||
|
||||
|
||||
def get_dir():
|
||||
"""
|
||||
Get directory that log files are being written to.
|
||||
will be None if there is no output directory (i.e., if you didn't call start)
|
||||
|
||||
:return: (str) the logging directory
|
||||
"""
|
||||
return Logger.CURRENT.get_dir()
|
||||
|
||||
|
||||
record_tabular = logkv
|
||||
dump_tabular = dumpkvs
|
||||
|
||||
|
||||
# ================================================================
|
||||
# Backend
|
||||
# ================================================================
|
||||
|
||||
class Logger(object):
|
||||
# A logger with no output files. (See right below class definition)
|
||||
# So that you can still log to the terminal without setting up any output files
|
||||
DEFAULT = None
|
||||
CURRENT = None # Current logger being used by the free functions above
|
||||
|
||||
def __init__(self, folder, output_formats):
|
||||
"""
|
||||
the logger class
|
||||
|
||||
:param folder: (str) the logging location
|
||||
:param output_formats: ([str]) the list of output format
|
||||
"""
|
||||
self.name2val = defaultdict(float) # values this iteration
|
||||
self.name2cnt = defaultdict(int)
|
||||
self.level = INFO
|
||||
self.dir = folder
|
||||
self.output_formats = output_formats
|
||||
|
||||
# Logging API, forwarded
|
||||
# ----------------------------------------
|
||||
def logkv(self, key, val):
|
||||
"""
|
||||
Log a value of some diagnostic
|
||||
Call this once for each diagnostic quantity, each iteration
|
||||
If called many times, last value will be used.
|
||||
|
||||
:param key: (Any) save to log this key
|
||||
:param val: (Any) save to log this value
|
||||
"""
|
||||
self.name2val[key] = val
|
||||
|
||||
def logkv_mean(self, key, val):
|
||||
"""
|
||||
The same as logkv(), but if called many times, values averaged.
|
||||
|
||||
:param key: (Any) save to log this key
|
||||
:param val: (Number) save to log this value
|
||||
"""
|
||||
if val is None:
|
||||
self.name2val[key] = None
|
||||
return
|
||||
oldval, cnt = self.name2val[key], self.name2cnt[key]
|
||||
self.name2val[key] = oldval * cnt / (cnt + 1) + val / (cnt + 1)
|
||||
self.name2cnt[key] = cnt + 1
|
||||
|
||||
def dumpkvs(self):
|
||||
"""
|
||||
Write all of the diagnostics from the current iteration
|
||||
"""
|
||||
if self.level == DISABLED:
|
||||
return
|
||||
for fmt in self.output_formats:
|
||||
if isinstance(fmt, KVWriter):
|
||||
fmt.writekvs(self.name2val)
|
||||
self.name2val.clear()
|
||||
self.name2cnt.clear()
|
||||
|
||||
def log(self, *args, level=INFO):
|
||||
"""
|
||||
Write the sequence of args, with no separators,
|
||||
to the console and output files (if you've configured an output file).
|
||||
|
||||
level: int. (see logger.py docs) If the global logger level is higher than
|
||||
the level argument here, don't print to stdout.
|
||||
|
||||
:param args: (list) log the arguments
|
||||
:param level: (int) the logging level (can be DEBUG=10, INFO=20, WARN=30, ERROR=40, DISABLED=50)
|
||||
"""
|
||||
if self.level <= level:
|
||||
self._do_log(args)
|
||||
|
||||
# Configuration
|
||||
# ----------------------------------------
|
||||
def set_level(self, level):
|
||||
"""
|
||||
Set logging threshold on current logger.
|
||||
|
||||
:param level: (int) the logging level (can be DEBUG=10, INFO=20, WARN=30, ERROR=40, DISABLED=50)
|
||||
"""
|
||||
self.level = level
|
||||
|
||||
def get_dir(self):
|
||||
"""
|
||||
Get directory that log files are being written to.
|
||||
will be None if there is no output directory (i.e., if you didn't call start)
|
||||
|
||||
:return: (str) the logging directory
|
||||
"""
|
||||
return self.dir
|
||||
|
||||
def close(self):
|
||||
"""
|
||||
closes the file
|
||||
"""
|
||||
for fmt in self.output_formats:
|
||||
fmt.close()
|
||||
|
||||
# Misc
|
||||
# ----------------------------------------
|
||||
def _do_log(self, args):
|
||||
"""
|
||||
log to the requested format outputs
|
||||
|
||||
:param args: (list) the arguments to log
|
||||
"""
|
||||
for fmt in self.output_formats:
|
||||
if isinstance(fmt, SeqWriter):
|
||||
fmt.writeseq(map(str, args))
|
||||
|
||||
|
||||
Logger.DEFAULT = Logger.CURRENT = Logger(folder=None, output_formats=[HumanOutputFormat(sys.stdout)])
|
||||
|
||||
|
||||
def configure(folder=None, format_strs=None):
|
||||
"""
|
||||
configure the current logger
|
||||
|
||||
:param folder: (str) the save location (if None, $BASELINES_LOGDIR, if still None, tempdir/baselines-[date & time])
|
||||
:param format_strs: (list) the output logging format
|
||||
(if None, $BASELINES_LOG_FORMAT, if still None, ['stdout', 'log', 'csv'])
|
||||
"""
|
||||
if folder is None:
|
||||
folder = os.getenv('BASELINES_LOGDIR')
|
||||
if folder is None:
|
||||
folder = os.path.join(tempfile.gettempdir(), datetime.datetime.now().strftime("baselines-%Y-%m-%d-%H-%M-%S-%f"))
|
||||
assert isinstance(folder, str)
|
||||
os.makedirs(folder, exist_ok=True)
|
||||
|
||||
log_suffix = ''
|
||||
if format_strs is None:
|
||||
format_strs = os.getenv('BASELINES_LOG_FORMAT', 'stdout,log,csv').split(',')
|
||||
|
||||
format_strs = filter(None, format_strs)
|
||||
output_formats = [make_output_format(f, folder, log_suffix) for f in format_strs]
|
||||
|
||||
Logger.CURRENT = Logger(folder=folder, output_formats=output_formats)
|
||||
log('Logging to %s' % folder)
|
||||
140
torchy_baselines/common/monitor.py
Normal file
140
torchy_baselines/common/monitor.py
Normal file
|
|
@ -0,0 +1,140 @@
|
|||
"""
|
||||
Taken from stable-baselines
|
||||
"""
|
||||
import csv
|
||||
import json
|
||||
import os
|
||||
import time
|
||||
|
||||
from gym.core import Wrapper
|
||||
|
||||
|
||||
class Monitor(Wrapper):
|
||||
EXT = "monitor.csv"
|
||||
file_handler = None
|
||||
|
||||
def __init__(self, env, filename, allow_early_resets=True, reset_keywords=(), info_keywords=()):
|
||||
"""
|
||||
A monitor wrapper for Gym environments, it is used to know the episode reward, length, time and other data.
|
||||
|
||||
:param env: (Gym environment) The environment
|
||||
:param filename: (str) the location to save a log file, can be None for no log
|
||||
:param allow_early_resets: (bool) allows the reset of the environment before it is done
|
||||
:param reset_keywords: (tuple) extra keywords for the reset call, if extra parameters are needed at reset
|
||||
:param info_keywords: (tuple) extra information to log, from the information return of environment.step
|
||||
"""
|
||||
Wrapper.__init__(self, env=env)
|
||||
self.t_start = time.time()
|
||||
if filename is None:
|
||||
self.file_handler = None
|
||||
self.logger = None
|
||||
else:
|
||||
if not filename.endswith(Monitor.EXT):
|
||||
if os.path.isdir(filename):
|
||||
filename = os.path.join(filename, Monitor.EXT)
|
||||
else:
|
||||
filename = filename + "." + Monitor.EXT
|
||||
self.file_handler = open(filename, "wt")
|
||||
self.file_handler.write('#%s\n' % json.dumps({"t_start": self.t_start, 'env_id': env.spec and env.spec.id}))
|
||||
self.logger = csv.DictWriter(self.file_handler,
|
||||
fieldnames=('r', 'l', 't') + reset_keywords + info_keywords)
|
||||
self.logger.writeheader()
|
||||
self.file_handler.flush()
|
||||
|
||||
self.reset_keywords = reset_keywords
|
||||
self.info_keywords = info_keywords
|
||||
self.allow_early_resets = allow_early_resets
|
||||
self.rewards = None
|
||||
self.needs_reset = True
|
||||
self.episode_rewards = []
|
||||
self.episode_lengths = []
|
||||
self.episode_times = []
|
||||
self.total_steps = 0
|
||||
self.current_reset_info = {} # extra info about the current episode, that was passed in during reset()
|
||||
|
||||
def reset(self, **kwargs):
|
||||
"""
|
||||
Calls the Gym environment reset. Can only be called if the environment is over, or if allow_early_resets is True
|
||||
|
||||
:param kwargs: Extra keywords saved for the next episode. only if defined by reset_keywords
|
||||
:return: ([int] or [float]) the first observation of the environment
|
||||
"""
|
||||
if not self.allow_early_resets and not self.needs_reset:
|
||||
raise RuntimeError("Tried to reset an environment before done. If you want to allow early resets, "
|
||||
"wrap your env with Monitor(env, path, allow_early_resets=True)")
|
||||
self.rewards = []
|
||||
self.needs_reset = False
|
||||
for key in self.reset_keywords:
|
||||
value = kwargs.get(key)
|
||||
if value is None:
|
||||
raise ValueError('Expected you to pass kwarg %s into reset' % key)
|
||||
self.current_reset_info[key] = value
|
||||
return self.env.reset(**kwargs)
|
||||
|
||||
def step(self, action):
|
||||
"""
|
||||
Step the environment with the given action
|
||||
|
||||
:param action: ([int] or [float]) the action
|
||||
:return: ([int] or [float], [float], [bool], dict) observation, reward, done, information
|
||||
"""
|
||||
if self.needs_reset:
|
||||
raise RuntimeError("Tried to step environment that needs reset")
|
||||
observation, reward, done, info = self.env.step(action)
|
||||
self.rewards.append(reward)
|
||||
if done:
|
||||
self.needs_reset = True
|
||||
ep_rew = sum(self.rewards)
|
||||
eplen = len(self.rewards)
|
||||
ep_info = {"r": round(ep_rew, 6), "l": eplen, "t": round(time.time() - self.t_start, 6)}
|
||||
for key in self.info_keywords:
|
||||
ep_info[key] = info[key]
|
||||
self.episode_rewards.append(ep_rew)
|
||||
self.episode_lengths.append(eplen)
|
||||
self.episode_times.append(time.time() - self.t_start)
|
||||
ep_info.update(self.current_reset_info)
|
||||
if self.logger:
|
||||
self.logger.writerow(ep_info)
|
||||
self.file_handler.flush()
|
||||
info['episode'] = ep_info
|
||||
self.total_steps += 1
|
||||
return observation, reward, done, info
|
||||
|
||||
def close(self):
|
||||
"""
|
||||
Closes the environment
|
||||
"""
|
||||
if self.file_handler is not None:
|
||||
self.file_handler.close()
|
||||
|
||||
def get_total_steps(self):
|
||||
"""
|
||||
Returns the total number of timesteps
|
||||
|
||||
:return: (int)
|
||||
"""
|
||||
return self.total_steps
|
||||
|
||||
def get_episode_rewards(self):
|
||||
"""
|
||||
Returns the rewards of all the episodes
|
||||
|
||||
:return: ([float])
|
||||
"""
|
||||
return self.episode_rewards
|
||||
|
||||
def get_episode_lengths(self):
|
||||
"""
|
||||
Returns the number of timesteps of all the episodes
|
||||
|
||||
:return: ([int])
|
||||
"""
|
||||
return self.episode_lengths
|
||||
|
||||
def get_episode_times(self):
|
||||
"""
|
||||
Returns the runtime in seconds of all the episodes
|
||||
|
||||
:return: ([float])
|
||||
"""
|
||||
return self.episode_times
|
||||
Loading…
Reference in a new issue