firedup
firedup copied to clipboard
Clone of OpenAI's Spinning Up in PyTorch
Hi, I ran this pytorch version SAC on Mujoco, which took time almost three times more than the original tf version code? Why did this happen? Is there any way...
I tried this repo with a simple env ``` class SimpleEnv(gym.Env): metadata = {'render.modes': ['human']} def __init__(self): super(SimpleEnv, self).__init__() self.observation_space = spaces.Box(low=0, high=2, shape=(4, 4)) self.action_space = spaces.Discrete(3) self.reset() def...
How do I utilize a GPU for training?