Skip to content

Commit

Permalink
Delete Pacman
Browse files Browse the repository at this point in the history
  • Loading branch information
ekomlenovic committed Jan 26, 2025
1 parent c681ab7 commit 53cbb4f
Show file tree
Hide file tree
Showing 11 changed files with 3 additions and 427 deletions.
1 change: 0 additions & 1 deletion docs/code_docs/Environments/Pacman.md

This file was deleted.

1 change: 0 additions & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ nav:
- Highway: code_docs/Environments/Highway.md
- Hopper: code_docs/Environments/Hopper.md
- LunarLander: code_docs/Environments/LunarLander.md
- Pacman: code_docs/Environments/Pacman.md
- LLM:
- GenCode: code_docs/LLM/GenCode.md
- LLMOptions: code_docs/LLM/LLMOptions.md
Expand Down
Empty file removed requirement.txt
Empty file.
133 changes: 0 additions & 133 deletions requirements.txt

This file was deleted.

100 changes: 0 additions & 100 deletions src/Environments/Pacman.py

This file was deleted.

1 change: 0 additions & 1 deletion src/Environments/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@
from .Highway import Highway
from .Hopper import Hopper
from .LunarLander import LunarLander
from .Pacman import Pacman
from .Swimmer import Swimmer
19 changes: 0 additions & 19 deletions src/log/ALE_Pacman_v5_log.csv

This file was deleted.

2 changes: 1 addition & 1 deletion src/main.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import argparse
from logging import getLogger

from Environments import (Algo, CartPole, Highway, Hopper, LunarLander, Pacman,
from Environments import (Algo, CartPole, Highway, Hopper, LunarLander,
Swimmer)
from LLM.LLMOptions import llm_options
from log.log_config import init_logger
Expand Down
2 changes: 1 addition & 1 deletion src/test_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from RLAlgo.DirectSearch import DirectSearch
from RLAlgo.Reinforce import Reinforce

from Environments import Algo, CartPole, Highway, LunarLander, Pacman
from Environments import Algo, CartPole, Highway, LunarLander
from LLM.LLMOptions import llm_options
from log.log_config import init_logger
from log.LoggerCSV import LoggerCSV
Expand Down
2 changes: 1 addition & 1 deletion src/visualise.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

from stable_baselines3 import PPO

from Environments import (Algo, CartPole, Highway, Hopper, LunarLander, Pacman,
from Environments import (Algo, CartPole, Highway, Hopper, LunarLander,
Swimmer)
from LLM.LLMOptions import llm_options
from log.log_config import init_logger
Expand Down
Loading

0 comments on commit 53cbb4f

Please sign in to comment.