gpt4 book ai didi

google-colaboratory - 如何在谷歌 Colab 中渲染 OpenAI 健身房?

转载 作者:行者123 更新时间:2023-12-04 05:44:17 30 4
gpt4 key购买 nike

关闭。这个问题需要更多 focused .它目前不接受答案。












想改进这个问题?更新问题,使其仅关注一个问题 editing this post .

2年前关闭。




Improve this question




我正在尝试在 google colab 中使用 OpenAI 健身房。由于笔记本在远程服务器上运行,我无法渲染健身房的环境。

我为 Jupyter notebook 找到了一些解决方案,但是,这些解决方案不适用于 colab,因为我无权访问远程服务器。

我想知道是否有人知道适用于谷歌 Colab 的解决方法?

最佳答案

我最近不得不解决同样的问题并写了一个 blog post用我的解决方案。为了便于引用,我重新发布了 TLDR;版本在这里。

将此代码粘贴到 Colab 中的一个单元格中并运行它以安装所有依赖项。

%%bash

# install required system dependencies
apt-get install -y xvfb x11-utils

# install required python dependencies (might need to install additional gym extras depending)
pip install gym[box2d]==0.17.* pyvirtualdisplay==0.2.* PyOpenGL==3.1.* PyOpenGL-accelerate==3.1.*

然后在后台启动一个虚拟显示。
import pyvirtualdisplay


_display = pyvirtualdisplay.Display(visible=False, # use False with Xvfb
size=(1400, 900))
_ = _display.start()

blog post我还提供了一个示例模拟演示,以证明上述方法确实有效。

关于google-colaboratory - 如何在谷歌 Colab 中渲染 OpenAI 健身房?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50107530/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com