Reinforcement Learning
stable-baselines3
TensorBoard
dqn
Reinforcement Learning
Atari
Pac-Man
Eval Results (legacy)
Instructions to use ledmands/ALE-Pacman-v5 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- stable-baselines3
How to use ledmands/ALE-Pacman-v5 with stable-baselines3:
from huggingface_sb3 import load_from_hub checkpoint = load_from_hub( repo_id="ledmands/ALE-Pacman-v5", filename="{MODEL FILENAME}.zip", ) - Notebooks
- Google Colab
- Kaggle
ledmands commited on
Commit ·
91b9fbd
1
Parent(s): df1cef8
Removed old code from get_config.py
Browse files- get_config.py +0 -2
get_config.py
CHANGED
|
@@ -22,9 +22,7 @@ for key in json_file.keys():
|
|
| 22 |
if val_to_remove in json_file[key].keys():
|
| 23 |
json_file[key].pop(val_to_remove)
|
| 24 |
|
| 25 |
-
# outfile = open(f"{savefile}.json", "w")
|
| 26 |
with open(f"{savefile}.json", "w") as outfile:
|
| 27 |
outfile.write(json.dumps(json_file, indent=2))
|
| 28 |
|
| 29 |
file.close()
|
| 30 |
-
# outfile.close()
|
|
|
|
| 22 |
if val_to_remove in json_file[key].keys():
|
| 23 |
json_file[key].pop(val_to_remove)
|
| 24 |
|
|
|
|
| 25 |
with open(f"{savefile}.json", "w") as outfile:
|
| 26 |
outfile.write(json.dumps(json_file, indent=2))
|
| 27 |
|
| 28 |
file.close()
|
|
|