winkin119's picture
upload via upload_folder 2025-08-03T14:14:32.982945+00:00
61afe31 verified
|
raw
history blame contribute delete
1.16 kB
metadata
env_name: LunarLander-v3
tags:
  - LunarLander-v3
  - double-dqn
  - reinforcement-learning
  - custom-implementation
  - deep-q-learning
  - pytorch
model-index:
  - name: DoubleDQN-1d-LunarLander-v3
    results:
      - task:
          type: reinforcement-learning
          name: reinforcement-learning
        dataset:
          name: LunarLander-v3
          type: LunarLander-v3
        metrics:
          - type: mean_reward
            value: 271.13 +/- 32.77
            name: mean_reward
            verified: false

Double-DQN Agent playing LunarLander-v3

This is a trained model of a Double-DQN agent playing LunarLander-v3.

Usage

create the conda env in https://github.com/GeneHit/drl_practice

conda create -n drl python=3.10
conda activate drl
python -m pip install -r requirements.txt

play with full model

# load the full model
model = load_from_hub(repo_id="winkin119/DoubleDQN-1d-LunarLander-v3", filename="full_model.pt")

# Create the environment. 
env = gym.make("LunarLander-v3")
state, _ = env.reset()
action = model.action(state)
...

There is also a state dict version of the model, you can check the corresponding chapter in the repo.