这是indexloc提供的服务,不要输入任何密码
Skip to content

Pettingzoo #494

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 49 commits into from
Feb 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
d40e6c6
pettingzoo wrapper
rodrigodelazcano Sep 11, 2021
952a6ae
try fixing flake8
jkterry1 Sep 23, 2021
67af284
fix pettingzoo dependency
jkterry1 Sep 23, 2021
135a259
try more fixes
jkterry1 Sep 23, 2021
785b3a5
Merge branch 'master' into pettingzoo
Trinkle23897 Sep 24, 2021
f556ceb
fix flake8
jkterry1 Sep 24, 2021
dbadeb9
Merge branch 'pettingzoo' of github.com:rodrigodelazcano/tianshou int…
jkterry1 Sep 24, 2021
fcab79f
use observation_space instead of observation_spaces to reduce warnings
mahi97 Dec 15, 2021
eb66e26
convert masks to boolean in case environment give 0 and 1
mahi97 Dec 15, 2021
68bd375
add pettings zoo to typings of environment
mahi97 Dec 15, 2021
5d42e16
add pettings zoo to typings of environment
mahi97 Dec 15, 2021
7678f3f
fix style and minor refactoring
mahi97 Dec 15, 2021
efe4c03
replace pettingzoo with multiagent env inside __init__
mahi97 Dec 15, 2021
72bd861
add tic-tac-toe test from pettingzoo env and wrapper
mahi97 Dec 15, 2021
eb4aa78
remove old test and add new ones
mahi97 Dec 15, 2021
820abd3
fix style
mahi97 Dec 15, 2021
6ab3cbf
add dependency for pettingzoo test cases
mahi97 Dec 15, 2021
0992198
update throughput test enviroment from Pendulum-v0 to Pendulum-v1
mahi97 Dec 15, 2021
621948d
add typing to pettingzoo wrapper
mahi97 Dec 15, 2021
4f70532
add pettingzoo beside gym for single enviroment
mahi97 Dec 15, 2021
c9489b1
finalize the pistonball test
mahi97 Dec 15, 2021
f4ec99e
fix style
mahi97 Dec 15, 2021
7eec7e4
add documents for pettingzoo wrapper and remove mask action for Box s…
mahi97 Dec 16, 2021
33cbc53
fix minor issue with on policy and continuous actions
mahi97 Dec 16, 2021
a6078a7
add render to test configs
mahi97 Dec 16, 2021
4b8e057
add pistonball continuous on policy test
mahi97 Dec 16, 2021
37d44af
style
mahi97 Dec 16, 2021
1ceb580
fix style ready to merge
mahi97 Dec 16, 2021
b70c722
Merge branch 'master' into pettingzoo
Trinkle23897 Dec 16, 2021
5f7d190
fix mask issue for random and dqp policy
mahi97 Dec 16, 2021
a863dd3
Merge branch 'pettingzoo' of github.com:mahi97/tianshou into pettingzoo
mahi97 Dec 16, 2021
17f6028
bring back Pendulum to version 0 from 1 for test replay buffer
mahi97 Dec 16, 2021
6f371d2
reduce execution time of tic tac toe
mahi97 Dec 16, 2021
5530a02
reduce memory usage and execution time of piston ball test
mahi97 Dec 16, 2021
658e7e1
remove old multiagent env class
mahi97 Dec 17, 2021
def8962
Update setup.py
mahi97 Dec 29, 2021
994334b
Update tianshou/env/pettingzoo_env.py
mahi97 Dec 29, 2021
fbd1c4b
remove explicit pettingzoo type checking
mahi97 Dec 29, 2021
a6638d9
Update tianshou/policy/multiagent/mapolicy.py
mahi97 Dec 29, 2021
f551955
Merge branch 'master' into pettingzoo
Trinkle23897 Jan 20, 2022
e580ab6
remove import of pettingzoo in collector
mahi97 Feb 7, 2022
4de85e0
add CNN module for continuous piston ball and adjust hyperparameters
mahi97 Feb 7, 2022
b6033a2
fix style
mahi97 Feb 7, 2022
32fc1d1
resolve conflict with master
mahi97 Feb 7, 2022
21c719f
Merge branch 'master' into pettingzoo
Trinkle23897 Feb 7, 2022
6d774d3
increase batch size of pettingzoo test scenario
mahi97 Feb 8, 2022
0cde1ee
Merge branch 'pettingzoo' of github.com:mahi97/tianshou into pettingzoo
mahi97 Feb 8, 2022
3fe959c
Merge branch 'master' into pettingzoo
Trinkle23897 Feb 8, 2022
d68576d
Merge branch 'master' into pettingzoo
Trinkle23897 Feb 15, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ def get_version() -> str:
"torch>=1.4.0",
"numba>=0.51.0",
"h5py>=2.10.0", # to match tensorflow's minimal requirements
"pettingzoo>=1.12,<=1.13",
],
extras_require={
"dev": [
Expand All @@ -74,6 +75,9 @@ def get_version() -> str:
"pydocstyle",
"doc8",
"scipy",
"pillow",
"pygame>=2.1.0", # pettingzoo test cases pistonball
"pymunk>=6.2.1", # pettingzoo test cases pistonball
],
"atari": ["atari_py", "opencv-python"],
"mujoco": ["mujoco_py"],
Expand Down
87 changes: 0 additions & 87 deletions test/multiagent/Gomoku.py

This file was deleted.

148 changes: 0 additions & 148 deletions test/multiagent/tic_tac_toe_env.py

This file was deleted.

Loading