Views
No views yet
1conda create -n drl python=3.12
2conda activate drl
3python -m pip install -r requirements.txt1# load the full model
2model = load_from_hub(repo_id="winkin119/Rainbow-2d-LunarLander-v3", filename="full_model.pt")
3
4# Create the environment. Don't forget to check the necessary wrappers in the env setup.
5env = gym.make("LunarLander-v3")
6state, _ = env.reset()
7action = model.action(state)
8...