We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, when trying: from gym.wrappers.monitoring import logger as monitor_logger
from gym.wrappers.monitoring import logger as monitor_logger
following error arises:
ImportError Traceback (most recent call last) <ipython-input-32-7ca9f4672bea> in <module>() ----> 1 from gym.wrappers.monitoring import logger as monitor_logger ImportError: cannot import name 'logger'
I have gym version 0.10.5 and run rllab on Google Colaboratory. Thanks!
gym
rllab
Google Colaboratory
The text was updated successfully, but these errors were encountered:
This fixed things for me:
monitor_logger = logging.getLogger()
Sorry, something went wrong.
No branches or pull requests
Hi, when trying:
from gym.wrappers.monitoring import logger as monitor_logger
following error arises:
I have
gym
version 0.10.5 and runrllab
onGoogle Colaboratory
. Thanks!The text was updated successfully, but these errors were encountered: