CoolFace
Modelpublic

tmp120/DeepReinforcementLearning

sourceHugging Faceupdated 4mo agoView on Hugging Face
0likes4downloads
README.md37 linesDownload Raw Back to root
1---2tags:3- Taxi-v34- q-learning5- reinforcement-learning6- custom-implementation7model-index:8- name: DeepReinforcementLearning9  results:10  - task:11      type: reinforcement-learning12      name: reinforcement-learning13    dataset:14      name: Taxi-v315      type: Taxi-v316    metrics:17    - type: mean_reward18      value: 7.56 +/- 2.7119      name: mean_reward20      verified: false21---22 23# **PPO** Agent playing **LunarLander-v2**24This is a trained model of a **PPO** agent playing **LunarLander-v2**25using the [stable-baselines3 library](https://github.com/DLR-RM/stable-baselines3).26 27## Usage (with Stable-baselines3)28TODO: Add your code29 30 31```python32from stable_baselines3 import ...33from huggingface_sb3 import load_from_hub34 35...36```37