mirror of
https://github.com/Farama-Foundation/Gymnasium.git
synced 2025-08-29 17:45:07 +00:00
* Add WIP Monitored wrapper * Remove irrelevant render after close monitor test * py27 compatibility * Fix test_benchmark * Move Monitored out of wrappers __init__ * Turn Monitored into a function that returns a Monitor class * Fix monitor tests * Remove deprecated test * Remove deprecated utility * Prevent duplicate wrapping, add test * Fix test * close env in tests to prevent writing to nonexistent file * Disable semisuper tests * typo * Fix failing spec * Fix monitoring on semisuper tasks * Allow disabling of duplicate check * Rename MonitorManager * Monitored -> Monitor * Clean up comments * Remove cruft
10 lines
282 B
Python
10 lines
282 B
Python
from gym.monitoring.monitor_manager import (
|
|
_open_monitors,
|
|
detect_training_manifests,
|
|
load_env_info_from_manifests,
|
|
load_results,
|
|
MonitorManager,
|
|
)
|
|
from gym.monitoring.stats_recorder import StatsRecorder
|
|
from gym.monitoring.video_recorder import VideoRecorder
|