forked from uoe-agents/epymarl
-
Notifications
You must be signed in to change notification settings - Fork 2
/
NOTICE
35 lines (33 loc) · 1.11 KB
/
NOTICE
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
The following files have been modified compared to the original PyMARL codebase:
- src/components/action_selectors.py
- src/controllers/__init__.py
- src/controllers/basic_controller.py
- src/learners/__init__.py
- src/learners/coma_learner.py
- src/learners/q_learner.py
- src/modules/agents/__init__.py
- src/modules/agents/rnn_agent.py
- src/modules/critics/__init__.py
- src/modules/critics/coma.py
- src/runners/parallel_runner.py
- src/utils/logging.py
- src/config/envs/sc2.py
- src/config/algs/*
The following files have been added compared to the original PyMARL codebase:
- src/controllers/maddpg_controller.py
- src/controllers/non_shared_controller.py
- src/config/algs/*
- src/config/envs/gymma.yaml
- src/learners/actor_critic_learner.py
- src/learners/maddpg_learner.py
- src/learners/ppo_learner.py
- src/modules/agents/rnn_ns_agent.py
- src/modules/critics/centralV.py
- src/modules/critics/centralV_ns.py
- src/modules/critics/coma_ns.py
- src/modules/critics/ac.py
- src/modules/critics/ac_ns.py
- src/modules/critics/maddpg.py
- src/modules/critics/maddpg_ns.py
- src/modules/critics/mlp.py
- src/pretrained/*