Open yuanmingqi opened 1 year ago
Environment: DMControl Completed:
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 Completed:
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 Completed:
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)
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.