-
-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
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
[Progress Report] Construction of RLLTE Data Hub #30
Comments
Environment: DMControl
Model import example: from rllte.hub.models import DMControl
if __name__ == "__main__":
model = DMControl().load_models(
agent="sac",
env_id="humanoid_run",
seed=1,
device="cuda"
)
print(model) |
Environment: Envpool Atari Games synchronous mode
Model import example: from rllte.hub.models import Atari
if __name__ == "__main__":
model = Atari().load_models(
agent="ppo",
env_id="Pong-v5",
seed=1,
device="cuda"
)
print(model) |
Environment: Envpool Procgen Games synchronous mode
Model import examle: from rllte.hub.models import Procgen
if __name__ == "__main__":
model = Procgen().load_models(
agent="ppo",
env_id="bigfish",
seed=1,
device="cuda"
)
print(model) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Due to the high computing power required for training, we will gradually upload data to the data hub and report the progress in this issue. We will also change the priority of training according to needs, and you can leave a message here.
The text was updated successfully, but these errors were encountered: